There are two possibilities, either use the center
parameter as suggested by Richard Telford or the boundary
parameter.
Both codes below will create the same chart:
library(ggplot2) # CRAN version 2.2.1 used
qplot(carat, data=diamonds, geom = "histogram", binwidth = 1, xlim = c(0,3),
center = 0.5)
qplot(carat, data=diamonds, geom = "histogram", binwidth = 1, xlim = c(0,3),
boundary = 0)
For more details, please, see ?geom_histogram
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…