Window

Window#

2025-05-05

20 min read time

Applies to Linux

Rolling objects are returned by .rolling calls: hipdf.DataFrame.rolling(), hipdf.Series.rolling(), etc.

Rolling window functions#

Rolling.count()

Calculate the rolling count of non NaN observations.

Rolling.sum(*args, **kwargs)

Calculate the rolling sum.

Rolling.mean(*args, **kwargs)

Calculate the rolling mean.

Rolling.var([ddof])

Calculate the rolling variance.

Rolling.std([ddof])

Calculate the rolling standard deviation.

Rolling.min(*args, **kwargs)

Calculate the rolling min.

Rolling.max(*args, **kwargs)

Calculate the rolling max.

Rolling.apply(func, *args, **kwargs)

Calculate the rolling custom aggregation function.