1
qplot(carat,data=diamonds,geom="histogram",binwidth=1,xlim=c(0,3))

I use this code to draw a histogram. But the result is different from that of book.

enter image description here

enter image description here

Uwe
  • 41,420
  • 11
  • 90
  • 134
nan
  • 401
  • 4
  • 13

1 Answers1

4

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)

enter image description here

For more details, please, see ?geom_histogram.

Uwe
  • 41,420
  • 11
  • 90
  • 134