We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
geom_violin()
weight
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
Similar to #5053, geom_violin() also warns that weight is dropped, although it appears to be used as expected.
Reprex: (note that the two geom_violin() calls produce different outlines)
library(ggplot2) ggplot(mtcars, aes(wt, mpg)) + geom_point(aes(size = cyl)) + geom_violin(aes(weight = cyl)) + geom_violin()
The text was updated successfully, but these errors were encountered:
Thanks for the report! I can confirm the bug. I really thought I had fixed this for most stats, but this one must've slipped the net.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Similar to #5053,
geom_violin()
also warns that weight is dropped, although it appears to be used as expected.Reprex: (note that the two
geom_violin()
calls produce different outlines)The text was updated successfully, but these errors were encountered: