I have a dataframe looks like:
x y z
1 3 7 1
2 7 5 2
3 8 2 3
and other dataframe looks like:
x y z
1 7 5 4
2 8 2 8
3 4 5 5
4 7 3 7
5 9 5 3
6 3 7 9
Now I want to merge the two frames, and the frame after merge to be looked like this:
x y z
1 3 7 1
2 7 5 2
3 8 2 3
4 4 5 5
5 7 3 7
6 9 5 3