计算向量中唯一值的numbero的最有效方法

时间:2017-03-28 09:12:25

标签: r

有更好的方法来计算它而不是:

length(unique(vector))

让我们假设我们不知道哪个类是向量。

1 个答案:

答案 0 :(得分:0)

您可以使用

library(data.table)
vector <- c(1,2,2,2,3)
uniqueN(vector)