如何使用R在条形图中添加95%置信度误差条?

时间:2017-04-13 23:08:04

标签: r

我正在尝试在条形图中添加错误栏,但我不能。当我写代码时:

 ggplot(data = GenIncom, aes(x = educ, y = appxincome, fill =sex)) +
     stat_summary(fun.y = "mean", position = "dodge", geom = "bar" )

我明白了:

enter image description here

但是当我编写我的代码来添加错误条时,图形会消失并且有空白或者我可能会得到没有实际条形图的错误条。这是我的错误栏代码:

ggplot(data = naedu, aes(x = educ, y = appxincome, fill =sex)) +
    stat_summary(fun.y = "mean", position = "dodge", geom = "errorbar", 
    fun.data = mean_cl_normal)

以下是我的最终结果:

enter image description here

有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:1)

您正在使用两个ggplot调用,实际上是绘制条形图,然后仅使用误差线重绘图形。只需包含对stat_summary 2x的调用。