Module stats

Module stats 

Source
Expand description

Statistical functions

Functions§

interquartile_range
Computes the interquartile range (IQR) of a numeric data series.
max
Computes the maximum value in a data series.
mean
Compute the mean (μ) of a data series.
median
Computes the median of a sorted data series.
median_unsorted
Computes the median of an unsorted data series.
min
Computes the minimum value in a data series.
mu
Compute the mean (μ) of a data series.
normalized_entropy
Computes the normalized Shannon entropy of a numeric data series.
quartiles
Computes the 1st, 2nd, and 3rd quartiles of a numeric data series.
range
Computes the range a data series.
stdev
Computes the standard deviation (σ) of a numeric data series.
variance
Computes the sample variance (σ^2) of a data series.
z_score
Computes the z-score of a numeric datapoint value.
z_scores
Computes the z-scores for a numeric data series.