最佳答案
我试图去掉 ggplot2
中一个传奇人物的标题:
df <- data.frame(
g = rep(letters[1:2], 5),
x = rnorm(10),
y = rnorm(10)
)
library(ggplot2)
ggplot(df, aes(x, y, colour=g)) +
geom_line(stat="identity") +
theme(legend.position="bottom")
我看过 这个问题,没有一个解决方案对我有效。大多数人都会给出一个关于如何弃用 opts
的错误,而是使用 theme
。我还尝试了各种版本的 theme(legend.title=NULL)
、 theme(legend.title="")
、 theme(legend.title=element_blank)
等。典型的错误消息如下:
'opts' is deprecated. Use 'theme' instead. (Deprecated; last used in version 0.9.1)
'theme_blank' is deprecated. Use 'element_blank' instead. (Deprecated; last used in version 0.9.1)
自从0.9.3版本发布以来,我第一次使用 ggplot2
,我发现导航一些变化很困难..。