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)

Arguments

x

A mass_dataset object. If missing, the function returns y.

y

A mass_dataset object. If missing, the function returns x.

deparse.level

Not used, for compatibility only.

Value

A new mass_dataset object that is the row-wise combination of x and y.

Author

Xiaotao Shen shenxt1990@outlook.com

Examples

if (FALSE) {
# Assuming mass_dataset1 and mass_dataset2 are two mass_dataset objects
result <- rbind_mass_dataset(mass_dataset1, mass_dataset2)
}