将胡须末端放在箱形图上

时间:2012-10-20 23:18:53

标签: r ggplot2 boxplot

我想在boxplot函数自动给出的胡须末端放置垂直线。

3 个答案:

答案 0 :(得分:52)

正如@Roland暗示但未实现的那样,您可以使用stat_boxplot来实现此目的。调用_boxplot两次的技巧是为其中一个调用设置geomerrorbar

请注意,由于R使用笔和纸方法,建议首先在顶部绘制传统的箱形图来实现误差条。

使用@ Roland的虚拟数据df

ggplot(df, aes(x=cond, y = value))  + 
 stat_boxplot(geom ='errorbar') + 
 geom_boxplot() # shorthand for  stat_boxplot(geom='boxplot')

enter image description here

stat_boxplot?stat_boxplot)的帮助详细说明了计算并保存在data.frame

中的各种值

答案 1 :(得分:22)

要调整胡须线的大小,我们可以在函数中使用参数width = 0.5stat_boxplot

set.seed(42)
df <- data.frame(cond = factor(rep(c("A", "B"), each = 500)), 
                 value = c(rnorm(500, mean = 1, sd = 0.2), 
                           rnorm(500, mean = 1.5, sd = 0.1))) 

library(ggplot2)
ggplot(df, aes(x = cond, y = value)) +
       stat_boxplot(geom = "errorbar", width = 0.5) +  
       geom_boxplot() 

enter image description here

答案 2 :(得分:7)

有可能使用stat_boxplot来计算胡须结束,但我还不够ggplot2向导,所以我使用了基本函数。

set.seed(42)
df <- data.frame(cond = factor( rep(c("A","B"), each=500) ), 
                 value = c(rnorm(500,mean=1,sd=0.2),rnorm(500, mean=1.5,sd=0.1)))


whisk <- function(df,cond_col=1,val_col=2) {
  require(reshape2)
  condname <- names(df)[cond_col]
  names(df)[cond_col] <- "cond" 
  names(df)[val_col] <- "value"
  b <- boxplot(value~cond,data=df,plot=FALSE)
  df2 <- cbind(as.data.frame(b$stats),c("min","lq","m","uq","max"))
  names(df2) <- c(levels(df$cond),"pos")
  df2 <- melt(df2,id="pos",variable.name="cond")
  df2 <- dcast(df2,cond~pos)  
  names(df2)[1] <- condname
  df2
}



library(ggplot2)

plot1 <- ggplot(df, aes(x=cond)) 
plot1 <- plot1 + geom_errorbar(aes(ymin=min,ymax=max),data=whisk(df),width = 0.5)
plot1 <- plot1 + geom_boxplot(aes(y=value))
plot1

boxplot with horizontal at whisker ends