Combine R objects when number and names of columns do not match
rowbind(x, ...)
# Default S3 method
rowbind(x, y, ...)
# S3 method for class 'list'
rowbind(x, ...)
a data.frame with the combined data
# two data frames
rowbind(airquality, mtcars)
# a list of data frames
l = list(airquality, mtcars)
rowbind(l)