Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

MLDS (version 0.5.1)

rbind.mlds.df: Concatenate Objects of Class 'mlbs.df' or 'mlds.df' by Row

Description

Concatenate the data.frame of ‘mlbs.df’ or ‘mlds.df’ objects by row and concatenate the ‘invord’ attributes, also.

Usage

# S3 method for mlds.df
rbind(...)
# S3 method for mlbs.df
rbind(...)
Rbind(...)

Value

An object of class ‘mlbs.df’ or ‘mlds.df’ that is composed of data from several experiments.

Arguments

...

Objects of class ‘mlbs.df’ or ‘mlds.df’.

Author

Kenneth Knoblauch

Details

Uses rbind.data.frame to concatenate the data.frame component of several ‘mlbs.df’ or‘mlds.df’ objects and then concatenates there invord attributes, as well. Rbind will work, too, but is deprecated.

Examples

Run this code
data(kk1)
data(kk2)
data(kk3)
kk <- rbind(kk1, kk2, kk3)
nrow(kk1)
nrow(kk)
length(attr(kk1, "invord"))
length(attr(kk, "invord"))

Run the code above in your browser using DataLab