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())
欢迎大家关注我的公众号
小明的数据分析笔记本