Expand description
§Basic statistical computations
Modules§
Functions§
- kahan_
sigma - kahan_
sigma_ return_ counter - mean
- n_
choose_ 2 - percentile_
by percentile_ratio
ispercentile / 100
, e.g. the 90-th percentile corresponds to apercentile_ratio
of0.9
.- standard_
deviation ddof
stands for delta degress of freedom, and the sum of squares will be divided bycount - ddof
, wherecount
is the number of elements for population standard deviation, setddof
to 0 for sample standard deviation, setddof
to 1- sum
- sum_f32
- sum_
of_ fourth_ power_ f32 - sum_
of_ squares - sum_
of_ squares_ f32 - variance
ddof
stands for delta degress of freedom, and the sum of squares will be divided bycount - ddof
, wherecount
is the number of elements for population variance, setddof
to 0 for sample variance, setddof
to 1