SubSet | R Documentation |
The "Subset" function can abstract a data subset from the full dataset, this function not only collect the subset of coldata and rowdata, but also abstract raw counts/UMIs. Meanwhile, after "Subset" function, RISC object need to be normalized and scaled one more time.
SubSet(object, cells = NULL, genes = NULL)
object |
RISC object: a framework dataset. |
cells |
The cells are directly used for collecting a data subset. |
genes |
The genes are directly used for collecting a data subset. |
# RISC object
obj0 = raw.mat[[5]]
obj0
cell1 = rownames(obj0@coldata)[1:15]
obj1 = SubSet(obj0, cells = cell1)
obj1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.