pandas.core.window.expanding.Expanding.count#
- Expanding.count(numeric_only=False)[源代码][源代码]#
计算非 NaN 观测值的扩展计数。
- 返回:
- Series 或 DataFrame
返回类型与原始对象相同,具有
np.float64
数据类型。
参见
Series.expanding
调用带有 Series 数据的扩展。
DataFrame.expanding
使用 DataFrames 调用扩展。
Series.count
聚合 Series 的计数。
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