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