Learn R Programming

QCAGUI (version 1.9-6)

mergeRows: Function to Merge Rows of Two Data Frames.

Description

This function merges two data frames by combining their rows.

Usage

mergeRows(X, Y, common.only = FALSE, ...)

## S3 method for class 'data.frame':
mergeRows(X, Y, common.only = FALSE, ...)

Arguments

X
First data frame.
Y
Second data frame.
common.only
If TRUE, only variables (columns) common to the two data frame are included in the merged data set; the default is FALSE.
...
Not used.

Value

  • A data frame containing the rows from both input data frames.

See Also

For column merges and more complex merges, see merge.