带走叠加在ggplot图例中的点的字母

时间:2015-03-29 22:33:07

标签: r plot ggplot2 legend scatter

我正在做一些添加了标签的散点图,如下所示:

require(ggplot2)
ggplot(mtcars, aes(mpg, wt, fill=factor(cyl))) + geom_point(shape=21, size=4) + 
  geom_text((aes(label=rownames(mtcars), color=factor(cyl))))

enter image description here

如果你仔细观察这个传说,你会看到这封信' a'在图纸上 当然,每个点都有不同的颜色。我想要一个方法 消除这一点,但我一直在尝试guidesguide_legends否 无济于事。我希望的传奇在其他情节中看起来像:

ggplot(mtcars, aes(mpg, wt, fill=factor(cyl))) + geom_point(shape=21, size=4)

enter image description here

提前致谢, 涓

0 个答案:

没有答案