Combine df with concat
# Combine all dataframe with concat
frame_format = [df_f0_f1, df_f1_f2, df_f2_f3, df_f3_f4, df_f4_f5]
df_all = pd.concat(frame_format, sort = False)
# Combine all dataframe with concat
frame_format = [df_f0_f1, df_f1_f2, df_f2_f3, df_f3_f4, df_f4_f5]
df_all = pd.concat(frame_format, sort = False)