在多个箱图中添加胡须(水平线)

时间:2014-09-03 10:17:48

标签: r lines boxplot

我需要在我的多个盒子图中添加胡须(或水平线)。

您可以在此处找到我的数据集:link to data is broken...

换句话说,我正在绘制三个变量(Mat,Ita和Log)除以性别(F和M),以便比较它们的箱形图。我需要在每个箱形图中的两条垂直线的末尾添加一条水平线。

我正在使用ggplot2包,到目前为止我使用的代码是(这段代码允许我根据需要创建盒子图,我只需要添加水平线):

ggplot(newdata,aes(x=variable,y=value)) + 
  geom_boxplot(aes(fill=Gender)) + 
  xlab("Subject") + 
  ylab("Quiz score") + 
  ggtitle("Boxplots for quiz score and gender") + 
  scale_fill_manual(values=c("pink","lightblue"),labels=c("Female","Male")) + 
  theme(plot.title = element_text(face="bold"))

1 个答案:

答案 0 :(得分:2)

您可以使用stat_boxplot(geom ='errorbar')

我举了一个例子:

bp <- ggplot(iris, aes(factor(Species), Sepal.Width, fill = Species))
bp + geom_boxplot() + stat_boxplot(geom ='errorbar') 

结果:

enter image description here