使用ggplot2为直方图添加辅助y轴

时间:2018-04-14 14:03:37

标签: r ggplot2 histogram

set.seed(123)

df <- data.frame(x = c(sample(1:500, 800, replace = T)),
       id = rep(1:5, each = 160))

ggplot(df, aes(x)) + geom_histogram() + facet_wrap(~id)           

enter image description here

每个id有没有办法,我可以为所有x&gt;绘制辅助y轴条纹和轴为红色300 enter image description here

0 个答案:

没有答案