modin.pandas.Index.value_counts¶
- Index.value_counts(normalize: bool = False, sort: bool = True, ascending: bool = False, bins: int | None = None, dropna: bool = True) Series[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:
normalize (bool, default False) – If True, then the object returned will contain the relative frequencies of the unique values.
sort (bool, default True) – Sort by frequencies when True. Preserve the order of the data when False.
ascending (bool, default False) – Sort in ascending order.
bins (int, optional) – Rather than count values, group them into half-open bins, a convenience for
pd.cut, only works with numeric data. bins is not yet supported.dropna (bool, default True) – Don’t include counts of NaN.
- Returns:
A Series containing counts of unique values.
- Return type:
See also
Series.countNumber of non-NA elements in a Series.
DataFrame.countNumber of non-NA elements in a DataFrame.
DataFrame.value_countsEquivalent method on DataFrames.
Examples
With normalize set to True, returns the relative frequency by dividing all values by the sum of values.
bins
Bins can be useful for going from a continuous variable to a categorical variable; instead of counting unique apparitions of values, divide the index in the specified number of half-open bins.