箱线图仅显示平线

时间:2019-03-19 22:55:54

标签: r matrix boxplot

我有以下矩阵:

test <- matrix(c(2006,100,
                 2007,105,
                 2008,98,
                 2009,102,
                 2010,107),ncol=2,byrow=TRUE)

我想用它绘制箱形图

boxplot.matrix(test)

但是,我只有两条平线: enter image description here

我无法指出我做错了什么。可能是什么问题?

1 个答案:

答案 0 :(得分:2)

如果检查数据的性质,您会看到有2组距离很远,但是在每个组中,数据点是靠在一起的。

由于聚类和扩展,您的数据按原样显示。

如果分别检查每列,您将获得一个“典型”箱形图

> boxplot(test[,1], main="boxplot of column 1")

column1 data

> boxplot(test[,2], main="boxplot of column 2")

enter image description here