繁体   English   中英

在ggplot2中带有误差线的翻转轴上定位闪避

[英]Position dodge on a flipped axis with error bars in ggplot2

我正在使用以下数据框在ggplot2中创建深度图:

TTTTOM<- data.frame(Treatment=c("Mineral", "Mineral", "Mineral", "OM", "OM", "OM", "Veg", "Veg", "Veg"), Depth2=c(-7.5, -4.5, -1.5, -7.5, -4.5, -1.5, -7.5, -4.5, -1.5), mean=c(2.83, 3.33, 3.16, 9.16, 11.17, 11.67, 4.83, 5, 5.17), se=c(0.7, 1.12, 0.65, 2.41, 3.28, 3.12, 1.83, 1.71, 0.95))

我已经将此代码与ggplot2一起使用来创建绘图,但是位置闪避似乎并没有像处理线和点一样使用误差线。 我需要我的错误栏来显示我的观点(即,让它们以相同的数量躲避)。 谢谢你的帮助。

pd <- position_dodge(0.3) 
ggplot(TTTTOM, aes(x=Depth2, y=mean, linetype=Treatment)) + 
  geom_line(aes(linetype=Treatment), colour="black", size=0.75, position=pd) +
  geom_errorbar(aes(ymin=mean-se, ymax=mean+se), linetype=1, colour="black", width=.1, position=pd) +
  geom_point(colour="black",shape=16, size=2.0, position=pd) +
  scale_linetype_manual(values=c(1, 2, 4), labels=c("Organic", "Mineral", "Vegetated"))+
  geom_vline(aes(xintercept=0), linetype="dashed")+
  theme(legend.position="none",
    axis.title.x=element_text(size=18, margin=margin(10,0,0,0)),
    legend.title=element_blank(),
    legend.text=element_text(size=18),
    legend.key.width=unit(2,"line"),
    axis.text=element_text(size=18),
    axis.title.y=element_text(size=16, margin=margin(0,10,0,0)),
    plot.margin = unit(c(.25, .25, .25, .25), "in"))+
  labs(x=paste("Distance from \n sediment surface (cm)"), y="% Total OM") +
  expand_limits(x=c(-10,0))+
  coord_flip()

在此处输入图片说明

您对geom_errorbar()的调用需要一个组参数; 在这种情况下, group = Treatment

pd <- position_dodge(.3) 

ggplot(TTTTOM, aes(x=Depth2, y=mean, linetype=Treatment)) + 
  geom_line(aes(linetype=Treatment), colour="black", size=0.75, position=pd) +
  geom_errorbar(aes(ymin=mean-se, ymax=mean+se, group=Treatment), 
            linetype=1, colour="black", width=.1, position=pd) +
  geom_point(colour="black",shape=16, size=2.0, position=pd) +
  scale_linetype_manual(values=c(1, 2, 4), labels=c("Organic", "Mineral", "Vegetated"))+
  geom_vline(aes(xintercept=0), linetype="dashed")+
  theme(legend.position="none",
        axis.title.x=element_text(size=18, margin=margin(10,0,0,0)),
        legend.title=element_blank(),
        legend.text=element_text(size=18),
        legend.key.width=unit(2,"line"),
        axis.text=element_text(size=18),
        axis.title.y=element_text(size=16, margin=margin(0,10,0,0)),
        plot.margin = unit(c(.25, .25, .25, .25), "in"))+
  labs(x=paste("Distance from \n sediment surface (cm)"), y="% Total OM") +
  expand_limits(x=c(-10,0))+
  coord_flip()

输出:

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM