Combine two data frames

merge_drop(x, y, by = 0, ...)

Arguments

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.

Value

The returned data frame is the combination of x and y, with the rownames properly assigned.

Examples

# NOT RUN { merged.df <- merge_drop(df1,df2) # }