GGPlots的传奇色彩更加清晰

时间:2017-09-26 07:31:24

标签: r ggplot2 legend geom-bar

有没有什么办法可以让我的geom_bar ggplot图表中的这些颜色更明显?特别是蓝色/绿色的。还有一种方法是在顶部和底部之间有颜色之间有白线/空格吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

colour = "white"应该可以帮助您区分颜色。如果没有,则增加size=2。例如:

library(vcd)
data(Arthritis)
ggplot(Arthritis, aes(x = Treatment, fill = Improved)) + 
  geom_bar(colour = "white", size=2)

enter image description here