matchNested | R Documentation |
Match inside nested elements
matchNested(x, table, ..., keep_duplicates = FALSE)
## S4 method for signature 'character,list'
matchNested(x, table, keep_duplicates)
## S4 method for signature 'numeric,list'
matchNested(x, table, keep_duplicates)
## S4 method for signature 'character,data.table'
matchNested(x, table, keep_duplicates)
## S4 method for signature 'numeric,data.table'
matchNested(x, table, keep_duplicates)
## S4 method for signature 'character,data.frame'
matchNested(x, table, keep_duplicates)
## S4 method for signature 'character,data.frame'
matchNested(x, table, keep_duplicates)
x |
The values to be matched. |
table |
The values to be matched against.
Applies across rows for |
... |
Additional arguments to be passed to the method. |
keep_duplicates |
A logical value indicating whether to keep duplicates. |
Intentionally only performs exact matching. Refer to filterNested
function
for partial matching support with regular expressions.
integer
.
A positional vector corresponding to values defined in table
the same
size as x
.
showMethods("matchNested")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.