easystats / see

:art: Visualisation toolbox for beautiful and publication-ready figures
https://easystats.github.io/see/
Other
891 stars 45 forks source link

`scale` argument for `geom_violindot ` doesn't do anything #176

Open IndrajeetPatil opened 3 years ago

IndrajeetPatil commented 3 years ago
library(see)
library(ggplot2)

ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +  
  geom_violindot(scale = "count")

ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +  
  geom_violindot(scale = "area")

Created on 2021-07-21 by the reprex package (v2.0.0)

bwiernik commented 3 years ago

I think let's fix this by replacing with ggdist geoms

DominiqueMakowski commented 3 years ago

Definitly