001、正常绘图,显示图例
library(ggplot2) bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() ## 绘图 bp ## 显示绘图
绘图结果如下:
002、隐藏图例的标题
bp + guides(fill=guide_legend(title=NULL)) ## 隐藏图例的标题
绘图结果如下:
003、相同的效果
bp + theme(legend.title=element_blank()) ## 隐藏图例标题
标签:标题,图例,绘图,bp,隐藏,ggplot2 From: https://www.cnblogs.com/liujiaxin2018/p/17248247.html