You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am not sure if this is a bug or just rather unexpected (and undocumented) behaviour, but it feels like a bug to me. When adding boundary to bins in geom_histogram, the number of bins is reduced by one. See simple example below.
library("ggplot2")
library("ggplot2movies")
m<- ggplot(movies, aes(rating)) +
geom_histogram(bins=10)
m