python - count how many unique in a column
df['var_1'].nunique() # How many unque values are present in a variable
python - count how many unique in a column
df['var_1'].nunique() # How many unque values are present in a variable
counting unique values python
df.loc[df['mID']=='A','hID'].agg(['nunique','count','size'])
count unique values in python
words = ['a', 'b', 'c', 'a']
unique_words = set(words) # == set(['a', 'b', 'c'])
unique_word_count = len(unique_words) # == 3
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