我在ggplot2上有一个简单的(也许)问题。
我想删除图例中的一个变量,请在下面的示例中说trt1
。
我该怎么做?我仍然希望它被绘制,只是应该从图例中删除变量。
感谢您的帮助!
下面是一个简单的例子:
library(ggplot2)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot()
bp
答案 0 :(得分:1)
使用它。 scale_fill_discrete
就是您所需要的:
library(ggplot2)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group)) + geom_boxplot() +
scale_fill_discrete(breaks=c("ctrl","trt2"))
bp