Description Usage Arguments Value See Also Examples
Coerce the first input to a data.table, and then hand off to the higher performance merge routine.
1 |
df |
An R object that can be coerced to a data.table |
... |
Additional arguments for merge |
data.table
1 2 3 4 | lh <- data.frame(a = 1:5, b = letters[1:5])
rh <- data.frame(a = 2:4, c = letters[24:26])
dt_merge(lh, rh)
lh %>% dt_merge(rh)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.