Method: Polars::Expr#rolling_quantile
- Defined in:
- lib/polars/expr.rb
#rolling_quantile(quantile, interpolation: "nearest", window_size: 2, weights: nil, min_periods: nil, center: false) ⇒ Expr
Note:
This functionality is experimental and may change without it being considered a breaking change.
Note:
If you want to compute multiple aggregation statistics over the same dynamic
window, consider using group_by_rolling
this method can cache the window size
computation.
Compute a rolling quantile.
5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 |
# File 'lib/polars/expr.rb', line 5602 def rolling_quantile( quantile, interpolation: "nearest", window_size: 2, weights: nil, min_periods: nil, center: false ) _from_rbexpr( _rbexpr.rolling_quantile( quantile, interpolation, window_size, weights, min_periods, center ) ) end |