如何设置一个空白的背景颜色?

时间:2015-11-06 06:19:37

标签: r ggplot2

我在想是否可以使用ggplot2改变地块的背景颜色?像白色或其他什么?而不是以下

中的颜色

enter image description here

1 个答案:

答案 0 :(得分:0)

要更改面板的背景颜色,请使用以下代码:

myplot + theme(panel.background = element_rect(fill = 'green', colour = 'red'))

要更改绘图的颜色(但不更改面板的颜色),您可以执行以下操作:

myplot + theme(plot.background = element_rect(fill = 'green', colour = 'red'))

有关更多主题详情,请参阅此处https://groups.google.com/forum/#!topic/ggplot2/AfTB5ijyUIE