runUMAP | R Documentation |
Analyzes matrix data by UMAP and saves results to reducedDims
slot of TapestriObject
.
runUMAP(
TapestriExperiment,
alt.exp = "alleleFrequency",
assay = NULL,
use.pca.dims = TRUE,
pca.dims = NULL,
...
)
TapestriExperiment |
|
alt.exp |
Character, |
assay |
Character, |
use.pca.dims |
Logical, if |
pca.dims |
Numeric, indices of PCs to use in UMAP. Default |
... |
Additional parameters to pass to |
TapestriExperiment
with UMAP embeddings saved to reducedDims
slot of altExp.
tap.object <- newTapestriExperimentExample() # example TapestriExperiment object
tap.object <- runPCA(tap.object, alt.exp = "alleleFrequency")
tap.object <- runUMAP(tap.object, pca.dims = 1:3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.