Answers for "pandas distinct value is column"

9

how to get distinct value in a column dataframe in python

df.column.unique()
Posted by: Guest on May-30-2020
0

how to get unique value of all columns in pandas

print(df.apply(lambda col: col.unique()))
Posted by: Guest on August-05-2021

Code answers related to "pandas distinct value is column"

Python Answers by Framework

Browse Popular Code Answers by Language