I want to sum two data frames having similar columns and take Date column as a reference. Eg:
df1:
Date V1 V2 V3
2017/01/01 2 4 5
2017/02/01 3 5 7
df2:
Date V1 V2 V3
2017/01/01 1 3 6
2017/02/01 5 7 7
I want the result as:
df3:
Date V1 V2 V3
2017/01/01 3 7 11
2017/02/01 8 12 14
When I try to add df1 and df2, it gives error as Dates cannot be joined. Merge is also not useful here as this is about summing the values of similar data frames.