I have several dataframes with 5 rows and 5 columns. How do I concat them so they will on under each other (I want to build csv file out of that). For example I have
df0
a/0/id a/0/team a/0/seed 6456 colorado 6 8978 oregon 7 0980 texas 1 df1
a/1/id a/1/team a/1/seed 2342 nyc 12 8556 ucf 16 1324 california 5 How to get final dataframe like
final_df
6456 colorado 6 8978 oregon 7 0980 texas 1 2342 nyc 12 8556 ucf 16 1324 california 5 Thanks