ggplot:填充组的颜色点,而不创建重复的图例

时间:2017-09-24 00:17:24

标签: r ggplot2

当我尝试为点组定义颜色时,图例是错误的并且是重复的。

我的数据如下:

enter image description here

我的ggplot代码用于绘制带错误条的多个组:

ggplot(datac, aes(x=metric, y=avg, fill=group,color=col)) +
    geom_point(size=5) +
    geom_errorbar(position=position_dodge(.9), width=.25, aes(ymin=err_low, ymax=err_high)) +
     theme_minimal()+
     scale_y_continuous(labels = scales::percent,breaks=c(seq(-1,+1,by=0.05)))

显示 enter image description here

查看图例的重复方式,并使用正确的颜色为主要图例添加阴影。我做错了什么?

谢谢!

0 个答案:

没有答案