我无法找到一种方法让ggplot2在箱线图中显示空白级别,而不会将我的数据帧与实际缺失值一起使用。 这是可重现的代码:
# fake data
dftest <- expand.grid(time=1:10,measure=1:50)
dftest$value <- rnorm(dim(dftest)[1],3+0.1*dftest$time,1)
# and let's suppose we didn't observe anything at time 2
# doesn't work even when forcing with factor(..., levels=...)
p <- ggplot(data=dftest[dftest$time!=2,],aes(x=factor(time,levels=1:10),y=value))
p + geom_boxplot()
# only way seems to have at least one actual missing value in the dataframe
dftest2 <- dftest
dftest2[dftest2$time==2,"value"] <- NA
p <- ggplot(data=dftest2,aes(x=factor(time),y=value))
p + geom_boxplot()
所以我想我错过了一些东西。在处理平衡实验时,这不是问题,因为这些缺失数据可能在数据帧中是明确的。但是,例如,在队列中观察到的数据,这意味着将数据与未观察到的组合的缺失值进行对比... 谢谢你的帮助。
答案 0 :(得分:12)
您可以在合适的比例函数中控制中断,在本例中为scale_x_discrete
。确保使用参数drop=FALSE
:
p <- ggplot(data=dftest[dftest$time!=2,],aes(x=factor(time,levels=1:10),y=value))
p + geom_boxplot() +
scale_x_discrete("time", breaks=factor(1:10), drop=FALSE)
我喜欢在将数据发送到ggplot
之前进行数据操作。我认为这使代码更具可读性。这就是我自己做的方式,但结果是一样的。但请注意,ggplot
比例变得更加简单,因为您不必指定中断:
dfplot <- dftest[dftest$time!=2, ]
dfplot$time <- factor(dfplot$time, levels=1:10)
ggplot(data=dfplot, aes(x=time ,y=value)) +
geom_boxplot() +
scale_x_discrete("time", drop=FALSE)