We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be very useful to be able to create split violin plots such as this: https://stackoverflow.com/questions/35717353/split-violin-plot-with-ggplot2
Extending this functionality to sina plots would be extremely useful: https://ggforce.data-imaginist.com/reference/geom_sina.html
The text was updated successfully, but these errors were encountered:
Hi, that's a great suggestion 😄 I've added an optional split aesthetic to the half-violin plot, see example below:
split
ggplot() + geom_half_violin( data = ToothGrowth, aes(x = as.factor(dose), y = len, split = supp, fill = supp), position = "identity" ) + theme_minimal()
Hope it's still of use !
Sorry, something went wrong.
No branches or pull requests
It would be very useful to be able to create split violin plots such as this:
https://stackoverflow.com/questions/35717353/split-violin-plot-with-ggplot2
Extending this functionality to sina plots would be extremely useful:
https://ggforce.data-imaginist.com/reference/geom_sina.html
The text was updated successfully, but these errors were encountered: