为ggplot2设置黑/灰色配色方案?

时间:2013-06-06 22:42:01

标签: r plot ggplot2

如何为ggplot2设置ggplot2(类似于“theme_bw”)的黑/灰/暗配色方案,而无需手动指定颜色?有类似的东西:

ggplot(mtcars) + geom_boxplot(aes(factor(cyl), mpg, fill=factor(gear)))

生成黑色/灰色箱形图(像往常一样在等级中等距)而不是红色/绿色/蓝色?

感谢。

1 个答案:

答案 0 :(得分:4)

试试这个:

last_plot() + scale_fill_grey()