Please, given the two dataframes:
DF1:
A B a1 b1 a2 b2 a3 b3 DF2:
C1 C2 C3 0 0 1 I would like to do the following DF1+DF2 producing the following:
A B C1 C2 C3 a1 b1 0 0 1 a2 b2 0 0 1 a3 b3 0 0 1 it is not clear to me how I should use one of Merge, Join or concatenate. Please, any help would be very appreciated.c.