我使用 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 的所有条形图着色吗?
谢谢