我正在使用grepl
在文本向量中搜索特定单词。我的函数运行得很好,但是输出中有几个TRUE
和FALSE
。我正在寻找一种对输出中的FALSE
和TRUE
进行总数的方法。
答案 0 :(得分:2)
只需在@akrun响应中明确
text_vector <- c("hello world", "world map", "travels", "world", "hllo wrld")
res <- grepl(pattern = "world", text_vector)
> table(res)
FALSE TRUE
2 3
> sum(res) # no. TRUE
[1] 3
> sum(!res) # no. TRUE
[1] 2