Imagine I have two pandas dataframes with these values:
Df1
id value
1 45
2 48
3 78
Df2
id value
1 45
2 49
3 78
We can see that there are two similar values (for id 1 and 3), and one different.
I want the Df1 to become like this:
id value
1 45
2 48
2 49
3 78
Any ideas how I can do that?
Thanks a lot !!