Answers for "return unique values in column pandas"

1

get list of unique values in pandas column

a = df['column name'].unique() #returns a list of unique values
Posted by: Guest on March-29-2021
1

Count unique values Pandas

df = df.groupby('domain')['ID'].nunique()
Posted by: Guest on April-22-2021

Code answers related to "return unique values in column pandas"

Python Answers by Framework

Browse Popular Code Answers by Language