append: Append datasets

Description Usage Arguments Details Value Author(s) Examples

View source: R/mStats.R

Description

append() row-combines multiple datasets of the same column names.

Usage

1

Arguments

data

data.frame

...

one or multiple data.frame

Details

A single or multiple datasets can be appended.

The appending datasets must have at least one variable name which is there in the master dataset.

The order of variables of the appending datasets is automatically set based on the variable arrangement of the master dataset.

Value

data.frame

Author(s)

Email: dr.myominnoo@gmail.com

Website: https://myominnoo.github.io/

Examples

1
2
3
4
5
6
7
8
x <- append(infert[, -c(3,4)], infert[, -5], infert[, -6])
## codebook(x)

## Not run: 
## if no variables are matched, ERROR
append(infert, iris)

## End(Not run)

mStats documentation built on Nov. 23, 2020, 9:07 a.m.

Related to append in mStats...