View source: R/visualization.R
LabelClusters | R Documentation |
Label clusters on a ggplot2-based scatter plot
LabelClusters(
plot,
id,
clusters = NULL,
labels = NULL,
split.by = NULL,
repel = TRUE,
box = FALSE,
geom = "GeomPoint",
position = "median",
...
)
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
|
repel |
Use |
box |
Use geom_label/geom_label_repel (includes a box around the text labels) |
geom |
Name of geom to get X/Y aesthetic names for |
position |
How to place the label if repel = FALSE. If "median", place the label at the median position. If "nearest" place the label at the position of the nearest data point to the median. |
... |
Extra parameters to |
A ggplot2-based scatter plot with cluster labels
geom_text_repel
geom_text
data("pbmc_small")
plot <- DimPlot(object = pbmc_small)
LabelClusters(plot = plot, id = 'ident')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.