merge_drop {ASSIGN} | R Documentation |
Combine two data frames
merge_drop(x, y, by = 0, ...)
x |
The first data frame to be coerced to one. |
y |
The second data frame to be coerced to one. |
by |
specifications of the columns used for merging. The default is by row names |
... |
arguments to be passed to or from methods. |
The returned data frame is the combination of x and y, with the rownames properly assigned.
## Not run: merged.df <- merge_drop(df1,df2) ## End(Not run)