我有下面的情节。它是使用以下命令创建的:
library(ggplot2)
df <- data.frame(cond = factor(rep(c("A", "B"), each = 200)),
rating = c(rnorm(200), rnorm(200, mean=.8)))
ggplot(df, aes(x=rating, fill=cond)) +
geom_density(alpha = .3) +
xlab("NEW RATING TITLE") +
ylab("NEW DENSITY TITLE")
现在,我想将图例标题从cond修改为NEW LEGEND TITLE。
所以,我只是添加了以下行添加上述代码的末尾:
+labs(colour="NEW LEGEND TITLE")
但它不起作用。正确的方法是什么?