ggplot2避免使用传奇符号周围的框

时间:2012-06-29 23:05:13

标签: r ggplot2

考虑下面的示例图。我想让传说中每个符号周围的小盒子消失。我是怎么做到的?

 ggplot(mtcars, aes(wt, mpg, shape=factor(cyl))) + geom_point() + theme_bw()

1 个答案:

答案 0 :(得分:76)

您正在寻找:

 + opts(legend.key = theme_blank())

你可以在?opts中看到很多关于这些东西的例子。我不记得我的头顶是哪一个,所以我只试了几下,直到我做对了。

注意:由于版本0.9.2 opts已由theme replaced完成:

+ theme(legend.key = element_blank())