I have two series:
JavaScript
x
3
1
ser1 = pd.Series([1,2,3,4,5])
2
ser2 = pd.Series([4,5,6,7,8])
3
I want to compare ser1 and ser2 and then remove the duplicates and put the result into ser1 to have something like this:
JavaScript
1
3
1
>>> ser1
2
out = 1 2 3
3
I tried pd.concat
but this gave me the combination of the two series without removing the duplicates.
Advertisement
Answer
JavaScript
1
2
1
(set(ser1).difference(ser2))
2
JavaScript
1
2
1
{1, 2, 3}
2