We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When binning the dotplot on the y axis, the facet_wrap free y scale is negated. This is new behavior - is it by design?
facet_wrap
library(ggplot2) p1 = ggplot(mtcars, aes(factor(cyl), mpg)) + geom_boxplot() + facet_wrap(~am, scales = "free_y") p1
p1 + geom_dotplot(binaxis = "y")