假设我有以下列表:
test<-list(c("a","b","c"),c("a"),c("c"))
>test
[[1]]
[1] "a" "b" "c"
[[2]]
[1] "a"
[[3]]
[1] "c"
我该怎么做(或使用函数)来获取列表中唯一项目的频率,如下所示:?
a 2
b 1
c 2
我尝试使用表(测试),但出现以下错误
> table(test)
Error in table(test) : all arguments must have the same length