I am using ggplot2 for box ploting.
However, I can't change the width of stat_boxplot (geom ='errorbar').
Here is part of my code:
geom_boxplot(width=0.5)+stat_boxplot(geom ='errorbar',width=0.5)
It's OK for geom_boxplot()
, but the width of stat_boxplot(geom ='errorbar')
is not changed .
Any suggestions? Thank you!