join_data | R Documentation |
Join data with another dataset
join_data(
data_l,
data_r,
by = NULL,
how = c("inner", "left", "right", "full", "anti", "semi"),
suffix_l = ".x",
suffix_r = ".y"
)
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) |
joined dataset
Zhaoming Su
code
, mutate-joins
,
filter-joins
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.