I've got two dataframes i would like to join, however, the dont contain exactly the same rows.
I've got this in the dataframe1
test1 1 test2 3 test5 4 test6 5 test7 6 And this in dataframe2
test1 4 test3 5 test4 6 test5 3 test6 3 What I would like to achieve is the following
col1 col2 test1 1 4 test2 3 test3 5 test4 6 test5 4 3 test6 5 3 test7 6 or
col1 col2 test1 1 4 test2 3 0 test3 0 5 test4 0 6 test5 4 3 test6 5 3 test7 6 0