Return number of unique elements in the object.
Excludes NA values by default.
Don’t include NaN in the count.
See also
DataFrame.nuniqueMethod nunique for DataFrame.
Series.countCount non-NA/null observations in the Series.
Examples
>>> s = pd.Series([1, 3, 5, 7, 7])
>>> s
0 1
1 3
2 5
3 7
4 7
dtype: int64
>>> s.nunique()
4
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Series.nunique.html