I found a problem with `geom_dotplot()` if I provide a continuous x variable and a categorical y variable. I expected a plot as the following but with reversed x and y axis. ``` r library(ggplot2) ggplot(data = iris) + geom_dotplot(aes(y = Sepal.Length, x = Species), binaxis = "y") ``` <!-- --> Instead, I got the following ``` r ggplot(data = iris) + geom_dotplot(aes(x = Sepal.Length, y = Species), binaxis = "x") ``` <!-- --> The dots start at the bottom instead of at the corresponding species level (y-axis). <sup>Created on 2023-10-09 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup>