Reputation: 105
I am trying to change the thickness of the border containing the boxplot figure. Is there a way to do this in R? Attached is the image with an arrow pointing to the border that I am talking about whose thickness I would like to change illustration image
Thanks!
Upvotes: 1
Views: 3505
Reputation: 37641
You can do that by overwriting the existing box with a heavier one.
boxplot(iris$Sepal.Length ~ iris$Species)
box(lwd=3)
Upvotes: 1