appendToTable: Append a data set to another data set

Description Usage Arguments Examples

View source: R/dataManipulations.R

Description

This function takes two data sets and appends the second onto the first. The Second may not have all of the columns as the firstin a list and converts it to a data.frame.

Usage

1
appendToTable(full, tmp)

Arguments

full

A data.frame that will be the base

tmp

A data.frame that will be joined onto the bottom of full

Examples

1
2
3
x = data.frame(A = rnorm(3), B = rnorm(3), C = rnorm(3))
y = data.frame(A = rnorm(3), C = rnorm(3))
appendToTable(x, y)

ivanliu1989/RQuant documentation built on Sept. 13, 2019, 11:53 a.m.