common(word.list, overlap = "all", equal.or = "more", ...)
"equal"
, "greater"
,
"more"
, "less"
).word.list
the user may input n number of
character vectors.Returns a dataframe of all words that match the criteria set by
overlap
and equal.or
.
Find common words between grouping variables (e.g., people).
## <strong>Not run</strong>: # a <- c("a", "cat", "dog", "the", "the") # b <- c("corn", "a", "chicken", "the") # d <- c("house", "feed", "a", "the", "chicken") # common(a, b, d, overlap=2) # common(a, b, d, overlap=3) # # r <- list(a, b, d) # common(r) # common(r, overlap=2) # # common(word_list(DATA$state, DATA$person)$cwl, overlap = 2) # ## <strong>End(Not run)</strong>