Answers for "get all unique values from dataframe column"

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
0

pandas get column values distinct

import pandas as pd

colors = {'color': ['green', 'blue', 'blue', 'red', 'green']}
df = pd.DataFrame.from_dict(colors)

print(df['color'].unique())
Posted by: Guest on August-31-2021

Code answers related to "get all unique values from dataframe column"

Python Answers by Framework

Browse Popular Code Answers by Language