Method: Polars::Expr#cumulative_eval
- Defined in:
- lib/polars/expr.rb
#cumulative_eval(expr, min_periods: 1, parallel: false) ⇒ Expr
Note:
This functionality is experimental and may change without it being considered a breaking change.
Note:
This can be really slow as it can have O(n^2)
complexity. Don't use this
for operations that visit all elements.
Run an expression over a sliding window that increases 1
slot every iteration.
6822 6823 6824 6825 6826 |
# File 'lib/polars/expr.rb', line 6822 def cumulative_eval(expr, min_periods: 1, parallel: false) _from_rbexpr( _rbexpr.cumulative_eval(expr._rbexpr, min_periods, parallel) ) end |