combine-DataFrame-DataFrame-method: Combining DataFrame objects

Description Usage Arguments Details Value Author(s) Examples

Description

Combine multiple DataFrame objects using a union strategy.

Usage

1
2
## S4 method for signature 'DataFrame,DataFrame'
combine(x, y, ...)

Arguments

x

A DataFrame object.

y

A DataFrame object.

...

One or more DataFrame objects.

Details

Objects are combined based on the row.names of x, y, and ....

Value

A DataFrame object.

Author(s)

Peter Hickey, peter.hickey@gmail.com

Examples

1
2
3
x <- DataFrame(A = 1:10, B = letters[1:10], row.names = LETTERS[1:10])
y <- DataFrame(B = letters[6:10], C = 10:6, row.names = LETTERS[6:10])
combine(x, y)

PeteHaitch/SparseSummarizedExperiment documentation built on May 8, 2019, 1:31 a.m.