Description Usage Arguments Value Examples
A wrapper to the reducedDims method with additional support for subsets.
1 2 3 4 | reducedDims(object, withDimnames, subsetName)
## S4 method for signature 'ANY'
reducedDims(object, withDimnames, subsetName)
|
object |
|
withDimnames |
|
subsetName |
|
The reducedDims
from the specified subset or same as
link[SingleCellExperiment]reducedDims when subsetName
is
missing
.
1 2 3 4 5 6 7 8 9 10 11 12 | data(sce_chcl, package = "scds")
es <- ExperimentSubset(sce_chcl)
es <- createSubset(es, "subset1",
rows = c(1:1500), cols = c(1:1500),
parentAssay = "counts")
reducedDim(es, type = "PCA_1",
subsetName = "subset1") <- scater::calculatePCA(
assay(es, "subset1"))
reducedDim(es, type = "PCA_2",
subsetName = "subset1") <- scater::calculatePCA(
assay(es, "subset1"))
reducedDims(es, subsetName = "subset1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.