merge on same index pandas code example
Example 1: pandas combine two data frames with same index and same columns
pd.merge(df1, df2, left_index=True, right_index=True, how='outer')
Example 2: dataframe join in python stack overflow
df1.join(df2)