merge_drop: Combine two data frames

Description Usage Arguments Value Examples

View source: R/misc_functions.R

Description

Combine two data frames

Usage

1
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

1
2
3
4
## Not run: 
merged.df <- merge_drop(df1,df2)

## End(Not run)

ASSIGN documentation built on Nov. 8, 2020, 8:29 p.m.