Learn R Programming

textTools (version 0.1.0)

str_count_positional_nomatch: Count words from a vector that are not found in the same position in another vector.

Description

Count words from a vector that are not found in the same position in another vector.

Usage

str_count_positional_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 positional match in y divided by the number of words in x.

Value

A count of the words in x without matches in the same position in y.

Examples

Run this code
# NOT RUN {
str_count_positional_nomatch(
x = c("a", "cool", "dog", "went", "to", "the", "store"),
y = c("a", "dog", "ran", "from", "the", "store")
)
# }

Run the code above in your browser using DataLab