I have df like this:
df1:
PL IN
22 NE22
22 NE22
22 NE22
33 DE33
33 DE33
66 NL66
66 NL66
66 NL66
I need to save csv with only unique value so the result should be:
22 NE22
33 DE33
66 NL66
I know .unique()
method but it works only on Series (?) I need to pic 2 col. Can someone give me an advice?