This function combines two mass_dataset objects by rows. It checks for compatibility in terms of sample information, variable information, and other attributes before performing the row-wise binding.
rbind_mass_dataset(x, y, deparse.level = 1)
A new mass_dataset object that is the row-wise combination of x
and y
.
if (FALSE) { # \dontrun{
# Assuming mass_dataset1 and mass_dataset2 are two mass_dataset objects
result <- rbind_mass_dataset(mass_dataset1, mass_dataset2)
} # }