join_data {iNZightTools} | R Documentation |
Join data with another dataset
Description
Join data with another dataset
Usage
join_data(
data_l,
data_r,
by = NULL,
how = c("inner", "left", "right", "full", "anti", "semi"),
suffix_l = ".x",
suffix_r = ".y"
)
Arguments
data_l |
original data |
data_r |
imported dataset |
by |
a character vector of variables to join by |
how |
the method used to join the datasets |
suffix_l |
suffix for the original dataset (ignored for filter-joins) |
suffix_r |
suffix for the imported dataset (ignored for filter-joins) |
Value
joined dataset
Author(s)
Zhaoming Su
See Also
code
, mutate-joins
,
filter-joins
[Package iNZightTools version 2.0.1 Index]