Trait polars::prelude::chunkedarray::SeriesOpsTime

source ·
pub trait SeriesOpsTime: AsSeries {
Show 14 methods // Provided methods fn rolling_mean_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_mean( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_sum_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_sum( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_quantile_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_quantile( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_min_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_min( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_max_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_max( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_var_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_var( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... } fn rolling_std_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError> { ... } fn rolling_std( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError> { ... }
}
Available on crate feature temporal only.

Provided Methods§

source

fn rolling_mean_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling mean to a Series based on another Series.

source

fn rolling_mean( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling mean to a Series.

See: [RollingAgg::rolling_mean]

source

fn rolling_sum_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling sum to a Series based on another Series.

source

fn rolling_sum( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling sum to a Series.

source

fn rolling_quantile_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling quantile to a Series based on another Series.

source

fn rolling_quantile( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling quantile to a Series.

source

fn rolling_min_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling min to a Series based on another Series.

source

fn rolling_min( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling min to a Series.

source

fn rolling_max_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling max to a Series based on another Series.

source

fn rolling_max( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling max to a Series.

source

fn rolling_var_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling variance to a Series based on another Series.

source

fn rolling_var( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling variance to a Series.

source

fn rolling_std_by( &self, by: &Series, options: RollingOptionsDynamicWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window_by only.

Apply a rolling std_dev to a Series based on another Series.

source

fn rolling_std( &self, options: RollingOptionsFixedWindow ) -> Result<Series, PolarsError>

Available on crate feature rolling_window only.

Apply a rolling std_dev to a Series.

Implementors§