get list of unique values in pandas column
a = df['column name'].unique() #returns a list of unique values
get list of unique values in pandas column
a = df['column name'].unique() #returns a list of unique values
distinct rows in this DataFrame
# distinct rows in this DataFrame
df.distinct().count()
# 2
how to get unique value of all columns in pandas
print(df.apply(lambda col: col.unique()))
dataframe number of unique rows
1
# get the unique values (rows) by retaining last row
2
df.drop_duplicates(keep='last')
Returns a new DataFrame containing the distinct rows in this DataFrame
# Returns a new DataFrame containing the distinct rows in this DataFrame
df.ditinct().count()
# 2
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us