Example Bioconductor S4 SplitDFrameList
object.
Usage
data(SplitDFrameList)
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
#>