I am trying to plot a simple barplot with standard errors and its driving me crazy. I did look up some examples and got as far as this:
rt5 <- data.frame(rtgrp=c(37.2,38.0,38.3,38.5,38.9),
mort=c(35,11,16,8,4),
se=c(0.08,0.01,0.005,0.01,0.02))
rt5
xvals=with(rt5,
barplot(mort,names.arg=rtgrp,
xlab="PTEMP_R group mean",ylab="%",ylim=c(0,max(mort+10+se))))
I am trying to get through the last line of script but have been on it for quite a while:
with(rt5,
arrows(xvals,mort,xvals,mort+se,length=45,angle=90,code=3))
I would really love to get over this one!
Thanks,
Baz
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…