ggplot2:为geom_bin()设置默认颜色/填充

时间:2014-11-28 09:42:59

标签: r ggplot2

我想为geom_bin()设置默认填充颜色。我想

update_stat_defaults("bin", list(colour="red", fill="green"))

应将填充颜色设置为绿色,将边界设置为红色(例如

ggplot(data, aes(x=x)) + stat_bin(color="red", fill="green")

一样)。

但是

update_stat_defaults("bin", list(colour="red", fill="green"))
ggplot(data, aes(x=x)) + stat_bin()

给了我黑条。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

ggplot2: How do I set the default fill-colour of geom_bar() in a theme我找到了答案

update_geom_defaults("bar",   list(fill = "green", colour="red"))