join_types | R Documentation |
The basic join types used in the hmatch
package ("left", "inner",
"anti") are conceptually equivalent to dplyr's
join
types.
For each of the three join types there is also a counterpart prefixed by
"resolve_" ("resolve_left", "resolve_inner", "resolve_anti"). In a resolve
join rows of raw
with matches to multiple rows of ref
are resolved either
to a single best match or no match before the subsequent join type is
implemented. In a resolve join, rows of raw
are never duplicated.
The exact details of match resolution vary somewhat among functions, and are explained within each function's documentation.
left |
return all rows from |
inner |
return only the rows of |
anti |
return all rows from |
resolve_left |
similar to "left", except that any row of |
resolve_inner |
similar to "inner", except that any row of |
resolve_anti |
similar to "anti", except that any row of |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.