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
qplot(cyl, mpg, data=mtcars) + stat_summary(fun.y=median, colour="red", geom='point', size = 3)
example is no longer reproducible on master branch. It gives a warning:
Warning message: Computation failed in `stat_summary()`: unused arguments (colour = "red", size = 3)
and does not plot geom_point. On the other hand, it works properly when the mean function is supplied:
geom_point
mean
qplot(cyl, mpg, data=mtcars) + stat_summary(fun.y=mean, colour="red", geom='point', size = 3)
The text was updated successfully, but these errors were encountered:
3208fc5
Thanks!
Sorry, something went wrong.
No branches or pull requests
example is no longer reproducible on master branch. It gives a warning:
and does not plot
geom_point
. On the other hand, it works properly when themean
function is supplied:The text was updated successfully, but these errors were encountered: