Description Usage Arguments Value Author(s) Examples
Access by name a matrix of expression values, one row for each feature (gene, exon, region, etc), and one column for each cell stored an element of the assayData slot of the SCESet object.
1 2 3 4 5 6 7 |
object |
a |
exprs_values |
character string indicating which values should be used
as the expression values for this plot. Valid arguments are |
... |
further arguments passed to |
warning |
a logical scalar specifying whether a warning should be
raised, and |
a matrix of expression values
Davis McCarthy
1 2 3 4 5 6 7 8 9 | data("sc_example_counts")
data("sc_example_cell_info")
example_sceset <- newSCESet(countData = sc_example_counts)
get_exprs(example_sceset, "counts")
## new slots can be defined and accessed
set_exprs(example_sceset, "scaled_counts") <- t(t(counts(example_sceset)) /
colSums(counts(example_sceset)))
get_exprs(example_sceset, "scaled_counts")[1:6, 1:6]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.