用ggplot隐藏一个传奇

时间:2014-05-15 15:18:04

标签: r ggplot2

假设我有

ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()

我不想显示图例。从图中隐藏或删除图例的最简单方法是什么?

1 个答案:

答案 0 :(得分:6)

添加theme(legend.position="none"),如下所示:

ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + 
  geom_boxplot() + 
  theme(legend.position="none")

source