How to Increase the thickness of the box lines in an R boxplot?

后端 未结 2 962
小鲜肉
小鲜肉 2021-01-18 02:58

How can I increase the thickness of the lines that outline \"box\" part of a boxplot using either the base R plot or boxplot function? That is, how do I thicken the lines o

2条回答
  •  耶瑟儿~
    2021-01-18 03:30

    See the boxlwd parameter as discussed in ?bxp (linked to from ?boxplot). E.g.

    boxplot(rnorm(100,50,10), horizontal = TRUE, notch = TRUE, boxlwd = 4)
    

提交回复
热议问题