背景带有g中的ggplot

时间:2015-04-26 12:36:20

标签: r ggplot2

我正在尝试为不同的群体创建箱形图。我想在3个水平带中为背景着色。中心位置,其中所有观察值都接近整体平均值

平均值(重量)-0.5 < x&lt;平均(重量)0.5

其他2个乐队是下面的和上面的。

Theese是我的情节

library(ggplot2)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
bp

1 个答案:

答案 0 :(得分:6)

使用geom_rect

bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) +
    geom_rect(ymin = -Inf, ymax = lwWt, 
              xmin = -Inf, xmax = Inf, fill = 'blue') +
    geom_rect(ymin = lwWt, ymax = upWt, 
              xmin = -Inf, xmax = Inf, fill = 'pink') + 
    geom_rect(ymin = upWt, ymax = Inf, 
          xmin = -Inf, xmax = Inf, fill = 'skyblue') +
    geom_boxplot() 
print(bp)
ggsave("example.jpg", bp)

这给了你这个数字:enter image description here

希望你能改变背景颜色:)