How can I reduce the width of each individual boxplot in Base R?
I do not want to change the relative sizes of the boxplots, which I understand can be done with the width argument
(this is not the same question as this post, which asks about removing whitespace)
boxplot(mpg ~ cyl,
data=mtcars)


