I am trying to reduce the spacing in boxplot between groups without changing the boxplot width. Most solutions online are to adjust the distance within a sub-group, but not between groups. Thanks a lot!
library("ggplot2")
data(iris) # Example data
iris_new <- iris
iris_new$new <- letters[1:2]
ggplot(iris_new, aes(x = Species, y = Sepal.Length, fill = new)) +
geom_boxplot()


