pandas.core.window.expanding.Expanding.count #

扩大。计数( numeric_only = False ) [来源] #

计算非 NaN 观测值的扩展计数。

返回
系列或数据框

返回类型与具有 dtype 的原始对象相同np.float64

也可以看看

pandas.Series.expanding

调用扩展系列数据。

pandas.DataFrame.expanding

使用 DataFrame 调用扩展。

pandas.Series.count

系列的聚合计数。

pandas.DataFrame.count

聚合 DataFrame 的计数。

例子

>>> ser = pd.Series([1, 2, 3, 4], index=['a', 'b', 'c', 'd'])
>>> ser.expanding().count()
a    1.0
b    2.0
c    3.0
d    4.0
dtype: float64