I have two dataframes:
df1:
name surname
jane doe
john doe
df2
name
james
I want to add df2 to df1:
df_final
name surname
james doe
jane doe
john
with df1.add(df2) I haven't correct result. how can I add df2's data to first column of df1?