我的数据框中有部分文字。如何获得计数 示例:
t=data.frame(x=c('I want to go there','I want to go here','I don't want to go'))
预期: 由于前两个是局部的-我希望它们的数量为2
答案 0 :(得分:0)
如果我理解得很好,您是否想计算“我想要”一词有多少次。
library(stringr)
t=c('I want to go there','I want to go here',"I don't want to go")
x <- str_count(t, "I want")
print(x)