append dataframe to itself code example
Example: how to append a dataframe to another dataframe in pandas
# all_res is list of DataFrames : [ dataframe, dataframe, ... ]
df_res = pd.concat(all_res)
# all_res is list of DataFrames : [ dataframe, dataframe, ... ]
df_res = pd.concat(all_res)