答案 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