11

我正在使用 ggplot2 进行箱线图。
但是,我无法更改 stat_boxplot (geom ='errorbar') 的宽度。
这是我的代码的一部分:

geom_boxplot(width=0.5)+stat_boxplot(geom ='errorbar',width=0.5)

可以geom_boxplot(),但是 的宽度stat_boxplot(geom ='errorbar')没有改变。
有什么建议么?谢谢!

4

1 回答 1

5

要调整胡须线的大小(宽度),我们可以使用函数stat_params = list(width = 0.5)内部的参数:stat_boxplot

library(ggplot2)
ggplot(iris, aes(factor(Species), Sepal.Width, fill = Species)) +
  geom_boxplot() + 
  stat_boxplot(geom ='errorbar', stat_params = list(width = 0.5)) +

更新

现在我们可以使用width里面的参数stat_boxplot

library(ggplot2)
ggplot(iris, aes(factor(Species), Sepal.Width, fill = Species)) +
  geom_boxplot() + 
  stat_boxplot(geom ='errorbar', width = 0.5) 

在此处输入图像描述

于 2015-07-07T12:21:12.957 回答