pub trait VarAggSeries {
    fn var_as_series(&self, ddof: u8) -> Series;
    fn std_as_series(&self, ddof: u8) -> 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