使用代码
+ theme_bw() + theme(panel.grid.major=element_line(colour=NA), panel.background = element_rect(fill = "transparent",colour = NA), plot.background = element_rect(fill = "transparent",colour = NA), panel.grid.minor = element_blank())
补充:R语言的ggplot2画图去掉图例的灰色背景
R语言默认的图例如下
library(ggplot2) ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+ geom_point(aes(color=Species))
图例的位置是带灰色背景的
如果要去掉应该如何实现呢?可以在主题函数里进行设置
library(ggplot2) ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+ geom_point(aes(color=Species))+ theme(legend.key = element_blank())
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。如有错误或未考虑完全的地方,望不吝赐教。
原文链接:https://blog.csdn.net/wy245606262/article/details/95949065