R語(yǔ)言默認(rèn)的圖例如下
library(ggplot2)
ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+
geom_point(aes(color=Species))
圖例的位置是帶灰色背景的
如果要去掉應(yīng)該如何實(shí)現(xiàn)呢?可以在主題函數(shù)里進(jìn)行設(shè)置
library(ggplot2)
ggplot(iris,aes(x=Sepal.Length,y=Sepal.Width))+
geom_point(aes(color=Species))+
theme(legend.key = element_blank())
歡迎大家關(guān)注我的公眾號(hào)
小明的數(shù)據(jù)分析筆記本