vcomp | R Documentation |
Compares the elements of two lists against each other and outputs a count table
vcomp(query, target, rate)
query |
list |
target |
list |
rate |
logical |
## Not run: set.seed(1) l_target <- setNames(lapply(1:10, function(i) sample(letters, 5)), nm = paste0("t",sprintf("%02d", 1:10))) l_search <- setNames(lapply(1:3, function(i) sample(letters, 3)), nm = paste0("s",sprintf("%02d", 1:3))) res <- vcomp(query = l_search, target = l_target, rate = T) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.