在这里尝试aggregate
另一个问题时,我遇到了一个相当奇怪的结果。我无法弄清楚为什么,我想知道我所做的是否完全错误。
假设,我有一个data.frame
这样的:
df <- structure(list(V1 = c(1L, 2L, 1L, 2L, 3L, 1L),
V2 = c(2L, 3L, 2L, 3L, 4L, 2L),
V3 = c(3L, 4L, 3L, 4L, 5L, 3L),
V4 = c(4L, 5L, 4L, 5L, 6L, 4L)),
.Names = c("V1", "V2", "V3", "V4"),
row.names = c(NA, -6L), class = "data.frame")
> df
# V1 V2 V3 V4
# 1 1 2 3 4
# 2 2 3 4 5
# 3 1 2 3 4
# 4 2 3 4 5
# 5 3 4 5 6
# 6 1 2 3 4
现在,如果我想输出一个data.frame
具有唯一行的附加列,该列指示它们在df
. 对于这个例子,
# V1 V2 V3 V4 x
# 1 1 2 3 4 3
# 2 2 3 4 5 2
# 3 3 4 5 6 1
我通过以下实验获得了这个输出aggregate
:
> aggregate(do.call(paste, df), by=df, print)
# [1] "1 2 3 4" "1 2 3 4" "1 2 3 4"
# [1] "2 3 4 5" "2 3 4 5"
# [1] "3 4 5 6"
# V1 V2 V3 V4 x
# 1 1 2 3 4 1 2 3 4, 1 2 3 4, 1 2 3 4
# 2 2 3 4 5 2 3 4 5, 2 3 4 5
# 3 3 4 5 6 3 4 5 6
所以,这给了我粘贴的字符串。因此,如果我使用length
而不是print
,它应该给我这样的出现次数,这是期望的结果,就是这种情况(如下所示)。
> aggregate(do.call(paste, df), by=df, length)
# V1 V2 V3 V4 x
# 1 1 2 3 4 3
# 2 2 3 4 5 2
# 3 3 4 5 6 1
这似乎奏效了。但是,当data.frame
维度为 4*2500 时,输出data.frame
为 1*2501 而不是 4*2501(所有行都是唯一的,因此频率为 1)。
> df <- as.data.frame(matrix(sample(1:3, 1e4, replace = TRUE), nrow=4))
> o <- aggregate(do.call(paste, df), by=df, length)
> dim(o)
# [1] 1 2501
我用只有唯一行的较小的 data.frames 进行了测试,它给出了正确的输出(nrow=40
例如 change )。但是,当矩阵的维度增加时,这似乎不起作用。我就是不知道出了什么问题!有任何想法吗?