plotting barplots with standard errors using R

十年热恋 提交于 2019-11-28 14:30:13

length is the size of the arrow (the width of the error bar): 45 is much, much larger than your plot. A smaller value should work.

with(rt5, 
  arrows(
    xvals,mort,xvals,mort+se, 
    length=.3, angle=90, code=3,
    # Change the colour and line width, to see the error bars
    col="navy", lwd=5
  )
)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!