As regular merge, but combine data from columns with the same name.
MergeFill(df1, df2, by, overwrite = FALSE, ...)
first dataframe (lowest priority if overwrite=TRUE
).
second dataframe (highest priority if overwrite=TRUE
).
columns used for merging, required.
If FALSE (the default), NA's in df1 are replaced by values from df2. If TRUE, all values in df1 are overwritten by values from df2, except where df2 has NA.
additional arguments to merge, such as all
.