Struct polars_time::chunkedarray::RollingOptionsImpl
source · pub struct RollingOptionsImpl<'a> {
pub window_size: Duration,
pub min_periods: usize,
pub weights: Option<Vec<f64>>,
pub center: bool,
pub by: Option<&'a [i64]>,
pub tu: Option<TimeUnit>,
pub closed_window: Option<ClosedWindow>,
}
Available on crate feature
rolling_window
only.Fields§
§window_size: Duration
The length of the window.
min_periods: usize
Amount of elements in the window that should be filled before computing a result.
weights: Option<Vec<f64>>
An optional slice with the same length as the window that will be multiplied elementwise with the values in the window.
center: bool
Set the labels at the center of the window.
by: Option<&'a [i64]>
§tu: Option<TimeUnit>
§closed_window: Option<ClosedWindow>
Trait Implementations§
source§impl<'a> Clone for RollingOptionsImpl<'a>
impl<'a> Clone for RollingOptionsImpl<'a>
source§fn clone(&self) -> RollingOptionsImpl<'a>
fn clone(&self) -> RollingOptionsImpl<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for RollingOptionsImpl<'static>
impl Default for RollingOptionsImpl<'static>
source§impl From<RollingOptions> for RollingOptionsImpl<'static>
impl From<RollingOptions> for RollingOptionsImpl<'static>
source§fn from(options: RollingOptions) -> Self
fn from(options: RollingOptions) -> Self
Converts to this type from the input type.
source§impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow
impl<'a> From<RollingOptionsImpl<'a>> for RollingOptionsFixedWindow
source§fn from(options: RollingOptionsImpl<'a>) -> Self
fn from(options: RollingOptionsImpl<'a>) -> Self
Converts to this type from the input type.