powered by
Combine R objects when number and names of columns do not match
rowbind(x, ...)# S3 method for default rowbind(x, y, ...)# S3 method for list rowbind(x, ...)
# S3 method for default rowbind(x, y, ...)
# S3 method for list rowbind(x, ...)
a data.frame with the combined data
a R object, typically a data.frame, matrix or list
additional arguments passed to methods
a matrix, a data.frame (or any other object that can be coerced to data.frame)
# two data frames rowbind(airquality, mtcars) # a list of data frames l = list(airquality, mtcars) rowbind(l)
Run the code above in your browser using DataLab