pyspark.pandas.window.Expanding.count

Expanding.count() → FrameLike[source]

The expanding count of any non-NaN observations inside the window.

Note

the current implementation of this API uses Spark’s Window without specifying partition specification. This leads to move all data into single partition in single machine and could cause serious performance degradation. Avoid this method against very large dataset.

Returns
Series or DataFrame

Returned object type is determined by the caller of the expanding calculation.

See also

Series.expanding

Calling object with Series data.

DataFrame.expanding

Calling object with DataFrames.

Series.count

Count of the full Series.

DataFrame.count

Count of the full DataFrame.

Examples

>>> s = ps.Series([2, 3, float("nan"), 10])
>>> s.expanding().count()
0    1.0
1    2.0
2    2.0
3    3.0
dtype: float64
>>> s.to_frame().expanding().count()
     0
0  1.0
1  2.0
2  2.0
3  3.0