I am new at merging dataframes. I want to compare two dataframes:
left:
A
0 a
1 b
2 d
right
A
0 a
1 b
2 c
3 d
I want something like this:
A A_1
0 a a
1 b b
2 NaN c
3 d d
Is it possible to do this using merge/join/compare functions?