2

可能重复:
计算 R 中的唯一值

我只有一列满是名字,我需要知道每个名字在这个列上出现了多少次。

我可以做一个

summary(dfUL)

其中 dfUL 是我的用户列表数据框

这将为我提供一个特定值重复次数的摘要,但它只会针对前 6 个进行。我怎样才能为整个数据框做到这一点?

4

2 回答 2

8

你已经试过了table(dfUL)吗?

于 2012-04-23T11:42:47.113 回答
2

另一种可能有用的方法是match()函数。

match(x,dfUL$somecol) #Where x is the value in somecol you are looking for
match(max(dfUL$somecol),dfUL) #Returns the row with the maximum value of somecol
于 2012-04-23T23:45:38.880 回答