| arrange {scater} | R Documentation |
The SingleCellExperiment returned will have cells ordered by the corresponding
variable in colData(object).
arrange(object, ...) ## S4 method for signature 'SingleCellExperiment' arrange(object, ...)
object |
A |
... |
Additional arguments to be passed to |
An SingleCellExperiment object.
data("sc_example_counts")
data("sc_example_cell_info")
example_sce <- SingleCellExperiment(
assays = list(counts = sc_example_counts),
colData = sc_example_cell_info)
example_sce <- arrange(example_sce, Cell_Cycle)