I'd like to pass "breaks" to stat_summary_bin, but this doesn't seem to work as expected, despite other binning arguments working. ``` r set.seed(32) library("ggplot2") df <- data.frame(x = rnorm(1000), y = rnorm(1000)) ggplot(df, aes(x = x, y = y)) + stat_summary_bin(breaks = seq(-3, 3, by = 0.5)) #> Warning: Ignoring unknown parameters: breaks #> No summary function supplied, defaulting to `mean_se() #> Warning: Removed 1 rows containing missing values (geom_pointrange). ```  ``` r ggplot(df, aes(x = x, y = y)) + stat_summary_bin(bins = 12) #> No summary function supplied, defaulting to `mean_se() ``` 