pub fn nansem(values: &[Scalar], ddof: usize) -> ScalarExpand 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.