ggplot geom_bar如果值高于阈值,我可以突出显示不同颜色的条

时间:2015-01-27 19:32:10

标签: r ggplot2 geom-bar

我使用ggplot和geo_bar生成一个图,结果如下:

enter image description here

代码

# Faceting is a good alternative:
ggplot(df.cnts, aes(x=date,y=freq)) + geom_bar(stat="identity") +
  facet_wrap(~ operator, nrow = 3) +
  theme(axis.text.x  = element_text(angle=90, vjust=0.5, size=8))

问题

我可以使用代码来为值大于1000的所有条形图着色。

THX

1 个答案:

答案 0 :(得分:9)

mt_mean <-   mtcars %>% group_by(cyl) %>% summarise(avg_mpg = mean(mpg) )  

ggplot( mt_mean , aes(x=cyl, y =avg_mpg)) + 
    geom_bar(stat = 'identity', aes(fill = avg_mpg > 25 )  ) 

g + scale_fill_manual(values = c('red', 'black') )