Window#

Rolling objects are returned by .rolling calls: cudf.DataFrame.rolling(), cudf.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.