标签: r
有更好的方法来计算它而不是:
length(unique(vector))
让我们假设我们不知道哪个类是向量。
答案 0 :(得分:0)
您可以使用
library(data.table) vector <- c(1,2,2,2,3) uniqueN(vector)