Skip to main content

nansem

Function nansem 

Source
pub fn nansem(values: &[Scalar], ddof: usize) -> Scalar
Expand description

Standard error of the mean over non-missing values.

Matches pd.Series.sem(ddof=1) / scipy.stats.sem. Computed as std(values, ddof) / sqrt(n) where n is the non-missing count. Returns Null(NaN) when n <= ddof.