Description Usage Arguments Value Note See Also Examples
The Rle class is a general container for storing an atomic vector
that is stored in a run-length encoding format. It is based on the
rle
function from the base package.
1 2 3 4 5 6 7 8 9 10 |
x |
Object. |
... |
Additional arguments. |
Modified object.
Columns will be decoded and no longer Rle
class.
Updated 2019-07-20.
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(RangedSummarizedExperiment, package = "acidtest")
rowData <- SummarizedExperiment::rowData
## DataFrame ====
df <- rowData(RangedSummarizedExperiment)
lapply(df, class)
x <- decode(df)
lapply(x, class)
## SummarizedExperiment ====
## This works on rowData and colData.
x <- decode(RangedSummarizedExperiment)
lapply(rowData(x), class)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.