LabelClusters: Label clusters on a ggplot2-based scatter plot

Description Usage Arguments Value See Also Examples

View source: R/visualization.R

Description

Label clusters on a ggplot2-based scatter plot

Usage

1
2
3
4
5
6
7
8
9
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

1
2
plot <- DimPlot(object = pbmc_small)
LabelClusters(plot = plot, id = 'ident')

lambdamoses/SeuratBasics documentation built on May 6, 2020, 9:32 a.m.