pub trait ChunkCumAgg<T: PolarsDataType> {
    fn cummax(&self, _reverse: bool) -> ChunkedArray<T> { ... }
    fn cummin(&self, _reverse: bool) -> ChunkedArray<T> { ... }
    fn cumsum(&self, _reverse: bool) -> ChunkedArray<T> { ... }
    fn cumprod(&self, _reverse: bool) -> ChunkedArray<T> { ... }
}

Provided Methods

Get an array with the cumulative max computed at every element

Get an array with the cumulative min computed at every element

Get an array with the cumulative sum computed at every element

Get an array with the cumulative product computed at every element

Implementors