Reputation: 13
un=df.WFID.unique type(un) >> method
WFID is a column with integer values and I want to get unique IDs from it.
WFID
Upvotes: 1
Views: 40
Reputation: 4469
unique is a method, you need to call it
unique
un = df.WFID.unique()