We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It'd be nice to be able to specify rlang/purrr style anonymous functions in stat_function():
stat_function()
df <- data.frame(x = 1:10, y = (1:10)^2) ggplot(df, aes(x, y)) + geom_point() + stat_function(fun = ~ .x^2)
Associated pull request forthcoming.