When binning the dotplot on the y axis, the facet_wrap free y scale is negated. This is new behavior - is it by design?
library(ggplot2)
p1 = ggplot(mtcars, aes(factor(cyl), mpg)) +
geom_boxplot() +
facet_wrap(~am, scales = "free_y")
p1

p1 + geom_dotplot(binaxis = "y")
