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"
)joined dataset
original data
imported dataset
a character vector of variables to join by
the method used to join the datasets
suffix for the original dataset (ignored for filter-joins)
suffix for the imported dataset (ignored for filter-joins)
Zhaoming Su
code, mutate-joins,
filter-joins