Description Usage Arguments Value Examples
Compare vocabularies with set operations
1 | compare_convo(vocab1, vocab2, fx = c("setdiff", "intersect", "union"))
|
vocab1 |
Vocabulary list (or |
vocab2 |
Vocabulary list (or |
fx |
Character string describing comparison function. |
List (of class convomin
) of mismatches
1 2 3 4 5 | v1 <- list(letters[1:3], letters[4:6], letters[7:9])
v2 <- list(letters[(1:3)+1], letters[(4:6)-2], letters[7])
compare_convo(v1, v2, "setdiff")
compare_convo(v1, v2, "union")
compare_convo(v1, v2, "intersect")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.