ggplot中

001、默认绘图背景颜色

library(ggplot2)
ggplot(mtcars , aes(x=mpg, y=wt)) +
  geom_point()                         ## 测试默认绘图颜色

R语言渐变颜色调色板 r语言背景颜色_背景颜色

 

 

002、调整绘图的背景颜色

ggplot( mtcars , aes(x=mpg, y=wt)) +
  geom_point()+
  theme(panel.background = element_rect(fill = "purple"))      ## 设定绘图的背景颜色为紫色

R语言渐变颜色调色板 r语言背景颜色_背景颜色_02

 

 

003、指定绘图区域外的背景颜色

ggplot( mtcars , aes(x=mpg, y=wt)) +
  geom_point()+
  theme(plot.background = element_rect(fill = "purple"))    ## 修改绘图区域外的背景颜色

R语言渐变颜色调色板 r语言背景颜色_背景颜色_03

 

 

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))

R语言渐变颜色调色板 r语言背景颜色_R语言渐变颜色调色板_04