pub trait ChunkCumAgg<T: PolarsDataType> {
    // Provided methods
    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> { ... }
}
Available on crate feature cum_agg only.

Provided Methods§

source

fn cummax(&self, _reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative max computed at every element

source

fn cummin(&self, _reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative min computed at every element

source

fn cumsum(&self, _reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative sum computed at every element

source

fn cumprod(&self, _reverse: bool) -> ChunkedArray<T>

Get an array with the cumulative product computed at every element

Implementors§