ggplot中
001、默认绘图背景颜色
library(ggplot2)
ggplot(mtcars , aes(x=mpg, y=wt)) +
geom_point() ## 测试默认绘图颜色
002、调整绘图的背景颜色
ggplot( mtcars , aes(x=mpg, y=wt)) +
geom_point()+
theme(panel.background = element_rect(fill = "purple")) ## 设定绘图的背景颜色为紫色
003、指定绘图区域外的背景颜色
ggplot( mtcars , aes(x=mpg, y=wt)) +
geom_point()+
theme(plot.background = element_rect(fill = "purple")) ## 修改绘图区域外的背景颜色
004、同时对绘图区域和绘图区域外设置背景颜色
ggplot( mtcars , aes(x=mpg, y=wt)) +
geom_point()+
theme(plot.background = element_rect(fill = "purple"), ## 同时修改绘图区域和绘图区域意外的修改区域
panel.background = element_rect(fill = "cyan"))+
ggtitle("xxxxxxxxx")+
theme(plot.title =element_text(size=20,color ="red",hjust =0.5))