getReducedDimAttribute | R Documentation |
TreeSummarizedExperiment
objectsA set of utility functions designed to facilitate operations with
TreeSummarizedExperiment
objects
getReducedDimAttribute(x, ...)
## S4 method for signature 'SingleCellExperiment'
getReducedDimAttribute(x, dimred = 1L, name = NULL, ...)
x |
a |
... |
additional arguments, not used currently. |
dimred |
|
name |
|
getReducedDimAttribute
is a utility function that retrieves specific
elements from the attributes of reducedDim
in a
TreeSummarizedExperiment
object. These attributes may contain
loadings, statistical test results, or other metadata, depending on the
methods used to generate the results.
The extracted element from the reducedDim
attribute.
runCCA
, addNMF
, and
addLDA
data(GlobalPatterns)
tse <- GlobalPatterns
# Reduce the number of features
tse <- agglomerateByPrevalence(tse, rank = "Phylum")
# Run NMF and add the result to reducedDim(tse, "NMF").
tse <- addNMF(tse, k = 1, name = "NMF")
# Extract feature loadings
res <- getReducedDimAttribute(tse, dimred = "NMF", name = "loadings")
res |> head()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.