考虑下面的示例图。我想让传说中每个符号周围的小盒子消失。我是怎么做到的?
ggplot(mtcars, aes(wt, mpg, shape=factor(cyl))) + geom_point() + theme_bw()
答案 0 :(得分:76)
您正在寻找:
+ opts(legend.key = theme_blank())
你可以在?opts
中看到很多关于这些东西的例子。我不记得我的头顶是哪一个,所以我只试了几下,直到我做对了。
注意:由于版本0.9.2 opts
已由theme
replaced完成:
+ theme(legend.key = element_blank())