# These are the same
rowbind(mtcars, mtcars)
rowbind(list(mtcars, mtcars))
# With id column
rowbind(mtcars, mtcars, idcol = "id")
rowbind(a = mtcars, b = mtcars, idcol = "id")
# With saving row-names
rowbind(mtcars, mtcars, row.names = "cars")
rowbind(a = mtcars, b = mtcars, idcol = "id", row.names = "cars")
# Filling up columns
rowbind(mtcars, mtcars[2:8], fill = TRUE)
Run the code above in your browser using DataLab