join_track | R Documentation |
Join two datasets and see how many matches there are
join_track(
x,
y,
by = NULL,
suffix = c(".x", ".y"),
.merge = FALSE,
join_type,
...
)
x |
dataset |
y |
dataset |
by |
A character vector of variables to join by |
suffix |
If there are non-joined duplicate variables in x and y, these suffixes will be added to the output to disambiguate them. Should be a character vector of length 2. |
.merge |
If TRUE, then joined dataset will contain a variable called .merge that indicates which dataset the row came from |
join_type |
Which type of join? (full_join, left_join, right_join, inner_join) |
... |
Other functions passed to the _join function |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.