rbindDT: Glueing, not merging, two data.table objects together, by...

Description Usage Arguments Value

View source: R/funcDT.R

Description

Glueing, not merging, two data.table objects together, by matching column names

Usage

1
rbindDT(topDT, bottomDT)

Arguments

topDT

data.table object 1. Its values will be placed at the top of the returned data.table object. This is an obligatory argument, without default value.

bottomDT

data.table object 2. Its values will be placed at the bottom of the returned data.table object. This is an obligatory argument, without default value.

Value

The glued data.table object. Matching column names of 'topDT' and 'bottomDT' will be identified and its values will be placed in one column in the returned data.table object, the values of the 'topDT' argument on top of the values of the 'bottomDT' argument. Non-matching columns will be have missing values for the rows in the returned data.table object that correspond to the input data.table object in which the column name was not found.


R2DT documentation built on March 26, 2020, 5:59 p.m.

Related to rbindDT in R2DT...