Learn R Programming

mStats (version 3.2.2)

append: Append multiple datasets

Description

append() joins multiple datasets of the same column names.

Usage

append(data, ...)

Arguments

data

Base dataset

...

Datasets to be appended

Value

Modified Dataset

Details

Multiple datasets can be appended only if they have the same variables in the same order.

append(data, data1, data2, data3, etc)

Examples

Run this code
# NOT RUN {
## use infert dataset
data(infert)
codebook(infert)

infert.new <- append(infert, infert)
codebook(infert.new)


# }

Run the code above in your browser using DataLab