I am a newbie to pandas, tried searching this on google but still no luck. How can I get the rows by distinct values in column2?
For example, I have the dataframe bellow:
>>> df
COL1 COL2
a.com 22
b.com 45
c.com 34
e.com 45
f.com 56
g.com 22
h.com 45
I want to get the rows based on unique values in COL2
>>> df
COL1 COL2
a.com 22
b.com 45
c.com 34
f.com 56
So, how can I get that? I would appreciate it very much if anyone can provide any help.