In the current version of ggplot2
, the middle line in a box-whisker-plot is drawn bold compared to the other lines:
library(ggplot2)
p <- ggplot(mtcars, aes(factor(cyl), mpg))
p + geom_boxplot()
I think this was not the case in some older versions. Is there a way to separately adjust the width of the middle line?