Trait polars::chunked_array::object::VarAggSeries
source · [−]pub trait VarAggSeries {
fn var_as_series(&self) -> Series;
fn std_as_series(&self) -> Series;
}
This is supported on crate feature
object
only.Required methods
fn var_as_series(&self) -> Series
fn var_as_series(&self) -> Series
Get the variance of the ChunkedArray as a new Series of length 1.
fn std_as_series(&self) -> Series
fn std_as_series(&self) -> Series
Get the standard deviation of the ChunkedArray as a new Series of length 1.