qplot(carat,data=diamonds,geom="histogram",binwidth=1,xlim=c(0,3))
我使用此代码绘制直方图。但结果与书的结果不同。
答案 0 :(得分:2)
有两种可能性,使用center
参数作为suggested by Richard Telford或boundary
参数。
以下两个代码都会创建相同的图表:
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)
有关详细信息,请参阅?geom_histogram
。