如何在错误栏中添加值?

时间:2018-11-26 05:49:38

标签: r ggplot2

enter image description here如果我的data.frame如图所示。

值代表平均值±SE。 如何制作带有错误栏的条形图?

1 个答案:

答案 0 :(得分:0)

简单的方法是使用ggplot2 -package。下面的示例代码:

library(ggplot2)
data <- data.frame(
 name=letters[1:5],
 value=sample(seq(4,15),5),
 se=c(1,0.2,3,2,4))

ggplot(data) +
  geom_bar( aes(x=name, y=value), stat="identity") +
  geom_errorbar( aes(x=name, ymin=value-se, ymax=value+se), width=0.4, 
  colour="orange")