如何从R中的行中找到计数项目?

时间:2018-08-01 15:38:57

标签: r

enter image description here

我想在R中找到流派的出现。我该怎么办?我套用unique(),但不起作用。

1 个答案:

答案 0 :(得分:0)

如果它是list列,请执行

lengths(df1$col)

,如果它是字符串列

library(stringr)
str_count(df1$col, ",") + 1