pandas.Series.value_counts# Series.value_counts(normalize=False, sort=True, ascending=False, bins=None, dropna=True)[source]# Return a Series containing counts of unique values. The resulting object will be in descending order so that the first element is the most frequently-occurring element. Excludes NA values by default. Parameters: normalizebool, default FalseIf True then the object returned w

