merge_drop: Combine two data frames

View source: R/misc_functions.R

merge_dropR Documentation

Combine two data frames

Description

Combine two data frames

Usage

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)

## End(Not run)

compbiomed/ASSIGN documentation built on June 28, 2023, 4 a.m.