如何使用ggplot2和stat_bin制作包含没有观察值的数字级别的条形图

时间:2013-11-16 08:59:01

标签: r ggplot2

我将数据作为有序因子,级别为1,2,3,4,5。 (这是李克特量表数据。)我想用ggplot创建一个计数条形图,但这必须包括所有级别,甚至是零计数的级别。这是一个示例数据帧,其等级为零,计数为零。

library(ggplot2)

foo <- structure(list(feed.n.1.50..3. = structure(c(4L, 4L, 4L, 4L, 
4L, 5L, 5L, 4L, 1L, 1L,1L, 1L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 
4L, 4L, 4L, 4L, 4L, 5L, 5L, 4L, 5L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 
5L, 3L, 4L, 4L, 3L, 4L, 4L, 3L, 4L, 5L, 4L, 4L, 4L, 4L), .Label = c("1", 
"2", "3", "4", "5"), class = c("ordered", "factor"))), .Names = "answers", row.names = c(NA, 
-50L), class = "data.frame")

table(foo) # satisfy myself the level 2 has zero entries

ggplot(foo,aes(answers)) + geom_bar(stat="bin") # stat="bin" is not needed, but there for clarity

stat_bin()有一个参数drop,记录为

drop: If TRUE, remove all bins with zero counts

但默认值为FALSE,因此我预计会保留这些级别。有没有一种简单的方法可以使用ggplot来保持因子的所有级别?

1 个答案:

答案 0 :(得分:6)

通过缩放(默认)来删除关卡,因此请使用带有参数scale_x_discrete()的{​​{1}}来显示所有关卡。

drop=FALSE

enter image description here