使用ggplot2确定geom_jitter()的特定点

时间:2016-04-27 07:15:07

标签: r ggplot2 jitter

使用此代码时:

t1 <- ggplot(mtcars, aes(x=as.factor(cyl),y=mpg))
t2 <- geom_boxplot(outlier.shape=NA)
t3 <- geom_jitter(width=0.3, size=1.5, aes(color = disp))
t4 <- scale_colour_gradient(low="blue",high="red")
t5 <- geom_text(aes(label=ifelse(mpg > 30,as.character(mpg),'')))

t1 + t2 + t3 + t4 + t5

我得到一个与抖动点组合的箱线图。然而,我也能够标记兴趣点:标签不在特定点旁边,而是在箱线图的垂直中间。

Here is the figure

知道如何将文字放在相应的点旁边吗?

非常感谢你们!

顺便问一下:你能为我推荐ggplot2初学者的课程或教程吗?

1 个答案:

答案 0 :(得分:0)

事先抖动它?

library(ggplot2)
set.seed(1)
t1 <- ggplot(transform(mtcars, xjit=jitter(as.numeric(as.factor(cyl)))), aes(x=as.factor(cyl),y=mpg))
t2 <- geom_boxplot(outlier.shape=NA)
t3 <- geom_point(size=1.5, aes(x=xjit, color = disp))
t4 <- scale_colour_gradient(low="blue",high="red")
t5 <- geom_text(aes(x=xjit, label=ifelse(mpg > 30,as.character(mpg),'')), vjust = 1)

t1 + t2 + t3 + t4 + t5

enter image description here