2021
04-07
04-07
R的ggplot2画图,去除灰色阴影和网格的方式
使用代码+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...
继续阅读 >