假设我有
ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
我不想显示图例。从图中隐藏或删除图例的最简单方法是什么?
答案 0 :(得分:6)
添加theme(legend.position="none")
,如下所示:
ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) +
geom_boxplot() +
theme(legend.position="none")
(source)