I have two Dataframes:
df1:
A B
Date
12/2020 1 0
13/2020 1 1
df2:
A B C
Date
12/2020 0 0 1
13/2020 1 0 1
I want to add the values of df1 into df2 to get the following:
df3:
A B C
Date
12/2020 1 0 1
13/2020 2 1 1
How can can I do this using something like pd.join or pd.merge? (I have two large dataframes)
Thank you.