str_count_nomatch {textTools} | R Documentation |
Count the words in a vector that are not found in another vector.
Description
Count the words in a vector that are not found in another vector.
Usage
str_count_nomatch(x, y, ratio = FALSE)
Arguments
x |
A vector of words. |
y |
A vector of words to test against. |
ratio |
TRUE/FALSE, if TRUE, returns the number of words in x without a match in y divided by the number of words in x. |
Value
A number, the count of words in x and not in y
Examples
str_count_nomatch(
x = c("a", "dog", "went", "to", "the", "store"),
y = c("dog", "to", "store")
)
str_count_nomatch(
x = c("a", "dog", "went", "to", "the", "store"),
y = c("dog", "store"),
ratio = TRUE
)
[Package textTools version 0.1.0 Index]