concat two dataframes with same columns pandas code example
Example 1: how to merge two pandas dataframes on a column
import pandas as pd
T1 = pd.merge(T1, T2, on=T1.index, how='outer')
Example 2: 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