将geom_text与geom_jitter点对齐

时间:2018-09-13 15:42:41

标签: r ggplot2

如何在R ggplot2的下图中将文本标签与抖动点对齐(沿x轴尺寸)?

library(dplyr)
library(ggplot2)
mtcars %>% 
    ggplot(aes(am, wt, group = am, label = wt)) +
    geom_boxplot(outlier.shape = NA) +
    geom_jitter() +
    geom_text()

enter image description here

1 个答案:

答案 0 :(得分:5)

一种简便的解决方案是在.onSnaphotposition_jitter中都用相同的geom_text指定geom_jitter

seed

enter image description here