cbindList: cbind a set of dataframes

Description Usage Arguments Examples

Description

improved version of rbind, it can rbind a set of dataframes which have the same colomns

Usage

1
cbindList(objs, dup.rm = T)

Arguments

objs

character vector, the names of dataframes

dup.rm

if 'TRUE', the variables with the same name will be delete and just the most left side variable will be retained\n if 'FALSE', all the variables will be retained but the variables with the same name will be renamed

Examples

1
2
3
4
5
6
data(iris)
x1 <- iris
x2 <- iris
x3 <- iris
names(cbindList(c('x1', 'x2', 'x3'), dup.rm = T))
names(cbindList(c('x1', 'x2', 'x3'), dup.rm = F))

evanwang1990/process documentation built on May 16, 2019, 9:38 a.m.