Points labelled with the observation name.
Usage
geom_poolpoint(
label,
size_text = 3.88,
size_background = size_text * 2,
size_point = size_text * 3.5,
...
)
geom_pooljitter(
label,
size_text = 3.88,
size_background = size_text * 2,
size_point = size_text * 3.5,
jitter = 0.1,
...
)
Examples
library(ggplot2)
library(see)
ggplot(iris, aes(x = Petal.Width, y = Sepal.Length, color = Species)) +
geom_poolpoint(label = rownames(iris)) +
scale_color_flat_d() +
theme_modern()
ggplot(iris, aes(x = Petal.Width, y = Sepal.Length, color = Species)) +
geom_pooljitter(label = rownames(iris)) +
scale_color_flat_d() +
theme_modern()