ggplot2: ```r ggplot(mtcars, aes(hp)) + geom_dotplot(binwidth = 10, stackdir = 'center') ```  plotly: ```r ggplotly(ggplot(mtcars, aes(hp)) + geom_dotplot(binwidth = 10, stackdir = 'center')) ``` 