melt.SingleCellAssay {MAST} | R Documentation |
SingleCellAssay
matrixReturn a molten (flat) representation, taking the
cross-product of the expression values, the colData
(column meta data),
and the feature data (mcols
).
## S3 method for class 'SingleCellAssay' melt(data, ..., na.rm = FALSE, value.name = "value")
data |
|
... |
ignored |
na.rm |
ignored |
value.name |
name of 'values' column in returned value |
A data.table
, with the cartesian product of the
row and column attributes and the expression values
data(vbetaFA) melt.SingleCellAssay(vbetaFA[1:10,]) as(vbetaFA[1:10,], 'data.table')