R语言的ggplot2画图去掉图例的灰色背景

R语言默认的图例如下
library(ggplot2)
ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+
  geom_point(aes(color=Species))
image.png

图例的位置是带灰色背景的

如果要去掉应该如何实现呢?可以在主题函数里进行设置

image.png
library(ggplot2)
ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+
  geom_point(aes(color=Species))+
  theme(legend.key = element_blank())
image.png

欢迎大家关注我的公众号
小明的数据分析笔记本

你可能感兴趣的:(R语言的ggplot2画图去掉图例的灰色背景)