I am trying to find some way of appending multiple pandas data frames at once rather than appending them one by one using
df.append(df)
Le
#Row wise appending
combined_data = pd.concat([t1, t2, t3, t4, t5], axis=0)
This will stack one dataframe over another
#column wise appending
combined_data = pd.concat([t1, t2, t3, t4, t5], axis=1)
This will append the 2nd dataframe on the right side of the 1st dataframe