标签: r
我想过滤掉那些没有至少10人参加专业的专业。例如,在照片中只有3人主修动物学,所以我想过滤掉所有的动物学专业。我该怎么做?
答案 0 :(得分:1)
您可以使用group_by中的filter和dplyr作为:
group_by
filter
dplyr
library(dplyr) df %>% group_by(ciptitle) %>% filter(n()>=10)
答案 1 :(得分:0)
您可以使用System.ComponentModel:
System.ComponentModel
subset
或subset(df, grepl("ZOOLOGY", ciptitle)) 方式:
subset(df, grepl("ZOOLOGY", ciptitle))