join_all(dfs, by = NULL, type = "left", match = "all")
Arguments
dfs
A list of data frames.
by
character vector of variable names to join by. If omitted, will
match on all common variables.
type
type of join: left (default), right, inner or full. See
details for more information.
match
how should duplicate ids be matched? Either match just the
"first" matching row, or match "all" matching rows. Defaults
to "all" for compatibility with merge, but "first" is
significantly faster.