我正在使用ggplot 2绘制直方图。我设置binwidth = 6是因为我希望直方图可以获取组(x轴)的计数:(0,6],(6,12],(12,18] .....但是,对于我的代码,我终于得到了组的计数:(0,3],(3,9] ....如下图所示。我希望知道是否仍然可以让直方图显示(0,6],( 6,12],(12,18] .....并获得每个组的计数?
ggplot(aes(x = customer_age), data = data_churn_1) +
geom_histogram( aes(fill = churn), binwidth=6, colour="white") +
stat_bin(binwidth=6, geom="text", colour="black", size=3,
aes(label=..count..)) +
scale_x_continuous(breaks=seq(0,max(data_churn_1$customer_age), 6))+ facet_grid(.~ churn)