Skip to contents

Example Bioconductor S4 SplitDFrameList object.

Usage

data(SplitDFrameList)

Format

An object of class CompressedSplitDFrameList of dimension 1 x 2 x 2 x 2.

Value

SplitDFrameList.

Note

Updated 2023-11-08.

Examples

if (requireNamespace("IRanges", quietly = TRUE)) {
    data(SplitDFrameList)
    class(SplitDFrameList)
    is(SplitDFrameList, "SplitDFrameList")
    print(SplitDFrameList)
}
#> SplitDataFrameList of length 2
#> [[1]]
#> DataFrame with 1 row and 2 columns
#>           X         Y
#>   <integer> <integer>
#> 1         1         2
#> 
#> [[2]]
#> DataFrame with 2 rows and 2 columns
#>           X         Y
#>   <integer> <integer>
#> 1         1         3
#> 2         2         4
#>