【发布时间】:2015-07-03 00:53:21
【问题描述】:
假设我有以下数据框(实际的代表非常大的数据集)
df<- structure(list(x = c(1, 1, 1, 2, 2, 3, 3, 3), y = structure(c(1L,
6L, NA, 2L, 4L, 3L, 7L, 5L), .Label = c("all", "fall", "hello",
"hi", "me", "non", "you"), class = "factor"), z = structure(c(5L,
NA, 4L, 2L, 1L, 6L, 3L, 4L), .Label = c("fall", "hi", "me", "mom",
"non", "you"), class = "factor")), .Names = c("x", "y", "z"), row.names = c(NA,
-8L), class = "data.frame")
看起来像
>df
x y z
1 1 all non
2 1 non <NA>
3 1 <NA> mom
4 2 fall hi
5 2 hi fall
6 3 hello you
7 3 you me
8 3 me mom
我要做的是计算每组x(1,2 或 3)中匹配值的数量。例如,组号1 有一个匹配值是"non"(NA 应该被忽略)。所需的输出如下所示:
x n
1 1 1
2 2 2
3 3 2
试图以某种方式思考而不是 for-loop,因为我有一个大型数据集但无法通过。
【问题讨论】: