如何在使用theme_bw时删除ggplot2图例中各个条目周围的灰色边框?

时间:2014-11-17 12:38:00

标签: r ggplot2 legend

我在R中有以下代码:

library(ggplot2)
theme_set(theme_bw())
p <- ggplot(mtcars, aes(wt, mpg))
p <- p + geom_point(aes(colour = factor(cyl)))
p

导致:

ggplot2 grey border in legend

每个图例条目都有一个灰色边框。如何删除它?

1 个答案:

答案 0 :(得分:16)

添加

+ theme(legend.key = element_rect(colour = NA))

enter image description here