Closed RobertGregg closed 1 year ago
Hello,
Love this package, really fixes some issues I have with geom_jitter(). I just wanted to point out a small issue I'm having with the groupOnX argument. When I remove the argument I get the expected result:
geom_jitter()
ggplot(iris, aes(Species,Sepal.Length)) + geom_quasirandom(method = "tukeyDense") + ggtitle("Tukey + density")
However, when I include the argument I lose the jittering entirely:
ggplot(iris, aes(Sepal.Length, Species)) + geom_quasirandom(method = "tukeyDense", groupOnX=TRUE) + ggtitle("Tukey + density")
Maybe just two if-statements that need to be switched?
Oops, sorry never-mind. I just needed to flip the true/false groupOnX. Feel free to close the issue.
Hello,
Love this package, really fixes some issues I have with
geom_jitter()
. I just wanted to point out a small issue I'm having with the groupOnX argument. When I remove the argument I get the expected result:However, when I include the argument I lose the jittering entirely:
Maybe just two if-statements that need to be switched?