ggplot2避免传说符号周围的框
考虑下面的示例图。 我想让传说中每个符号周围的小盒子消失。 我如何做到这一点?
ggplot(mtcars, aes(wt, mpg, shape=factor(cyl))) + geom_point() + theme_bw()
您正在寻找:
+ opts(legend.key = theme_blank())
你可以看到许多这样的东西的例子?opts
我不记得那是谁的头顶,所以我试了几次,直到我说得对。
注意 :由于版本0.9.2 opts
已被replace为theme
:
+ theme(legend.key = element_blank())