pandas.core.resample.Resampler.nunique#
- final Resampler.nunique()[源代码][源代码]#
返回组中唯一元素的数量。
- 返回:
- 系列
每个组内的唯一值数量。
参见
core.groupby.SeriesGroupBy.nunique
SeriesGroupBy 的 nunique 方法
例子
>>> ser = pd.Series( ... [1, 2, 3, 3], ... index=pd.DatetimeIndex( ... ["2023-01-01", "2023-01-15", "2023-02-01", "2023-02-15"] ... ), ... ) >>> ser 2023-01-01 1 2023-01-15 2 2023-02-01 3 2023-02-15 3 dtype: int64 >>> ser.resample("MS").nunique() 2023-01-01 2 2023-02-01 1 Freq: MS, dtype: int64