Boxplot包括一个“全部”框

时间:2014-07-23 15:23:50

标签: r boxplot

考虑数据框

df = data.frame(x = rnorm(33),cat = gl(3,11))

当我绘制由x的每个级别分隔的cat的箱线图时,这就是我得到的

boxplot(df$x ~ df$cat)

enter image description here

是否可以在同一剧情中包含另一个 显示所有 x的值?

boxplot(df$x,xlab = "x")

enter image description here

1 个答案:

答案 0 :(得分:2)

boxplot(x ~ cat, data = rbind(df, data.frame(x = df$x, cat = "all")))

enter image description here