の凡例のタイトルを削除しようとしてい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)
ggplot2
バージョン 0.9.3 がリリースされてから初めて使用していますが、いくつかの変更をナビゲートするのが難しいと感じています...