Learn R Programming

Seurat (version 3.1.0)

LabelClusters: Label clusters on a ggplot2-based scatter plot

Description

Label clusters on a ggplot2-based scatter plot

Usage

LabelClusters(plot, id, clusters = NULL, labels = NULL,
  split.by = NULL, repel = TRUE, ...)

Arguments

plot

A ggplot2-based scatter plot

id

Name of variable used for coloring scatter plot

clusters

Vector of cluster ids to label

labels

Custom labels for the clusters

split.by

Split labels by some grouping label, useful when using facet_wrap or facet_grid

repel

Use geom_text_repel to create nicely-repelled labels

...

Extra parameters to geom_text_repel, such as size

Value

A ggplot2-based scatter plot with cluster labels

See Also

geom_text_repel geom_text

Examples

Run this code
# NOT RUN {
plot <- DimPlot(object = pbmc_small)
LabelClusters(plot = plot, id = 'ident')

# }

Run the code above in your browser using DataLab