cbinds: Combine Two Data-frame by Columns

View source: R/utils.r

cbindsR Documentation

Combine Two Data-frame by Columns

Description

Combine two data.frame by columns by filling in missing rows from each other based on rownames.

Usage

cbinds(F1, F2, fill = 0)

Arguments

F1

data.frame.

F2

data.frame.

fill

character/numeric. Default 0

Value

a combined data.frame

Examples

F1 = data.frame(A = seq(10), B = seq(10), row.names = seq(10))
F2 = data.frame(C = seq(5),  D = seq(5),  row.names = 3:7)
cbinds(F1, F2)


TrustVDJ documentation built on March 18, 2022, 5:53 p.m.