We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stat_summary_bin() consistently gives one more bin than specified in the function call
ggplot(data=mtcars, aes(y=mpg,x=wt)) + stat_summary_bin(fun.y = "mean", geom = "point", bins = 3)
This shows 4 points. If you change bins to 4, it'll show 5 points and so on.