Match inside nested elements
matchNested.Rd
Match inside nested elements
Usage
matchNested(x, table, ..., keep_duplicates = FALSE)
# S4 method for character,list
matchNested(x, table, keep_duplicates)
# S4 method for numeric,list
matchNested(x, table, keep_duplicates)
# S4 method for character,data.table
matchNested(x, table, keep_duplicates)
# S4 method for numeric,data.table
matchNested(x, table, keep_duplicates)
# S4 method for character,data.frame
matchNested(x, table, keep_duplicates)
# S4 method for character,data.frame
matchNested(x, table, keep_duplicates)
Arguments
- x
The values to be matched.
- table
The values to be matched against. Applies across rows for
DataFrame
method.- ...
Additional arguments to be passed to the method.
- keep_duplicates
A logical value indicating whether to keep duplicates.