append df to another df same columns code example
Example 1: concact geodataframe python
>>> s1 = pd.Series(['a', 'b'])
>>> s2 = pd.Series(['c', 'd'])
>>> pd.concat([s1, s2])
0 a
1 b
0 c
1 d
dtype: object
Example 2: how to append a dataframe to another dataframe in pandas
# all_res is list of DataFrames : [ dataframe, dataframe, ... ]
df_res = pd.concat(all_res)