我使用ggplot和geo_bar生成一个图,结果如下:
代码
# 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
答案 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') )