Answers for "hwo to get the distinct values from a column"

9

how to get distinct value in a column dataframe in python

df.column.unique()
Posted by: Guest on May-30-2020
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 "hwo to get the distinct values from a column"

Python Answers by Framework

Browse Popular Code Answers by Language