| Rbind {MLDS} | R Documentation |
Concatenate the data.frame of ‘mlds.df’ objects by row and concatenate the ‘invord’ attributes, also.
Rbind(...)
... |
Objects of class ‘mlds.df’. |
Uses rbind.data.frame to concatenate the data.frame component of several ‘mlds.df’ objects and then concatenates there invord attributes, as well.
An object of class ‘mlds.df’ that is composed of data from several experiments.
Kenneth Knoblauch
data(kk1) data(kk2) data(kk3) kk <- Rbind(kk1, kk2, kk3) nrow(kk1) nrow(kk) length(attr(kk1, "invord")) length(attr(kk, "invord"))