df1
id value
1 1 10
2 2 20
3 3 30
4 4 40
5 5 50
df2
id value
1 2 25
2 3 35
I would like to have the following df3:
df3
id value
1 1 10
2 4 40
3 5 50
In other words, I would like to remove only the same ID between df1 and df2. How could I do that?