Trait polars::chunked_array::object::VarAggSeries[][src]

pub trait VarAggSeries {
    fn var_as_series(&self) -> Series;
fn std_as_series(&self) -> Series; }

Required methods

Get the variance of the ChunkedArray as a new Series of length 1.

Get the standard deviation of the ChunkedArray as a new Series of length 1.

Implementors