plotUMAP: Plot UMAP results either on already run results or run first...

View source: R/plotUMAP.R

plotUMAPR Documentation

Plot UMAP results either on already run results or run first and then plot.

Description

Plot UMAP results either on already run results or run first and then plot.

Usage

plotUMAP(
  inSCE,
  colorBy = NULL,
  shape = NULL,
  reducedDimName = "UMAP",
  runUMAP = FALSE,
  useAssay = "counts"
)

Arguments

inSCE

Input SingleCellExperiment object with saved dimension reduction components. Required

colorBy

color by a condition(any column of the annotation data).

shape

add shapes to each condition.

reducedDimName

saved dimension reduction name in the SingleCellExperiment object. Required.

runUMAP

If the dimension reduction components are already available set this to FALSE, otherwise set to TRUE. Default is False.

useAssay

Indicate which assay to use. The default is "logcounts"

Value

a UMAP plot of the reduced dimensions.

Examples

data(scExample, package = "singleCellTK")
sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'")
sce <- runQuickUMAP(sce)
plotUMAP(sce)

compbiomed/singleCellTK documentation built on Feb. 10, 2024, 3:32 a.m.