使用facet_wrap时,不会有条件地分隔相同变量的错误栏

时间:2019-11-14 00:20:23

标签: r ggplot2 facet errorbar

我有以下数据集:

Figure: dataset

我想使用构面并排创建三个条形图。我在R中有以下代码:

  ggplot(nod.stat, aes(fill=Fix, x=Fix, y=mean)) + 
  geom_bar(stat='identity', position=position_dodge(width=0.9)) + 
  geom_errorbar(aes( ymin=mean-se, ymax=mean+se), position = position_dodge(width = 0.90), width=0.2) +
  facet_wrap(.~variable, scales='free')

但这会不断添加来自相同Fix条件的所有三个SE,如下图所示: Figure: output bar plot

如何确保每个错误条仅对应一个错误条?

0 个答案:

没有答案