How can I align (along the x axis dimension) the text labels with the jittered points in the following plot in R ggplot2
?
library(dplyr)
library(ggplot2)
mtcars %>%
ggplot(aes(am, wt, group = am, label = wt)) +
geom_boxplot(outlier.shape = NA) +
geom_jitter() +
geom_text()
See Question&Answers more detail:os