library(tinyplot)
tinyplot(
Petal.Length ~ Species, iris,
type = "boxplot"
)

tinyplot(
Petal.Length ~ Species | Species, iris,
type = "boxplot",
legend = list("topleft", bty = "o")
)

The bottom boxplots should be the same width as the top ones. But they're too narrow.
I think I know why this is happening (related to a factor coercion) and should hopefully be a simple fix.
The bottom boxplots should be the same width as the top ones. But they're too narrow.
I think I know why this is happening (related to a factor coercion) and should hopefully be a simple fix.