RunUMAP | R Documentation |
Run nonlinear dimensionality reduction using UMAP with the PCA-transformed consensus matrix as input.
RunUMAP.SingleCellExperiment(object) ## S4 method for signature 'SingleCellExperiment' RunUMAP(object)
object |
of |
object of SingleCellExperiment
class
library(SingleCellExperiment) sce <- SingleCellExperiment(assays = list(logcounts = pbmc3k_500)) sce <- PrepareILoReg(sce) ## These settings are just to accelerate the example, use the defaults. sce <- RunParallelICP(sce,L=2,threads=1,C=0.1,k=5,r=1) sce <- RunPCA(sce,p=5) sce <- RunUMAP(sce)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.