Answers for "how to take the unique values in a column of data frame"

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
4

dataframe unique values in each column

for col in df:
    print(df[col].unique())
Posted by: Guest on August-20-2020

Code answers related to "how to take the unique values in a column of data frame"

Python Answers by Framework

Browse Popular Code Answers by Language