I have a list of dataframes where each have 700 rows and 11 columns. I would like to create a big dataframe containing all 2100 rows and 11 columns.
This works, but is there a better way if I have 100 dataframes in the list?
list = [list1, list2, list3]
combineddf <- rbind(list[[1]], list[[2]], list[[3]])