Open ManuelSpinola opened 3 years ago
This shows dots when I run it. Can you save an image output on your system and upload it here?
Thank you very much.
Can you see the image?
Maybe related to #44 and #79
Yes, something like that.
If I divide the y by 1000, I can see the dots:
ggplot(penguins, aes(x = species, y = body_mass_g/1000, fill = species)) + geom_violindot(fill_dots = "black") + theme_modern() + scale_fill_material_d()
El jue, 15 abr 2021 a las 15:20, Daniel @.***>) escribió:
Maybe related to #44 https://github.com/easystats/see/issues/44 and #79 https://github.com/easystats/see/issues/79
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/easystats/see/issues/114#issuecomment-820738900, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFI3FBZY2ELQJSGS5S2HXH3TI5KC7ANCNFSM43AHGUHA .
-- Manuel Spínola, Ph.D. Instituto Internacional en Conservación y Manejo de Vida Silvestre Universidad Nacional Apartado 1350-3000 Heredia COSTA RICA @. @.> @.*** Teléfono: (506) 8706 - 4662 Personal website: Lobito de río https://sites.google.com/site/lobitoderio/ Institutional website: ICOMVIS http://www.icomvis.una.ac.cr/
The function geom_violindot shows the dots with the iris data set but no with other data set, for example, penguins.
library(palmerpenguins)
data(penguins)
ggplot(penguins, aes(x = species, y = body_mass_g, fill = species)) + geom_violindot(fill_dots = "black") + theme_modern() + scale_fill_material_d()