Structs§
- Mode
Result - Result of
mode: the most-frequent value and its count.
Functions§
- gmean
- Geometric mean:
(prod x_i) ^ (1/n). - hmean
- Harmonic mean:
n / sum(1/x_i). - iqr
- Interquartile range: Q75 − Q25.
- kurtosis
- Sample kurtosis.
- mode
- Most-frequent value in an array (mode).
- sem
- Standard error of the mean:
std / sqrt(n). - skew
- Sample skewness (third standardized moment).
- zscore
- Per-element z-score:
(x - mean) / std.