Statistics
is a module for providing various statistical analyses on a collection of values.
grouped-median
(Fn [(Ref (Array Double) a), Int] Double)
(grouped-median data interval)
Compute the grouped median of the samples data.
high-median
(Fn [(Ref (Array Double) a)] Double)
(high-median data)
Compute the high median of the samples data.
low-median
(Fn [(Ref (Array Double) a)] Double)
(low-median data)
Compute the low median of the samples data.
median
(Fn [(Ref (Array Double) a)] Double)
(median data)
Compute the median of the samples data.
pstdev
(Fn [(Ref (Array Double) a)] Double)
(pstdev data)
Compute the population standard deviation of the samples data.
pvariance
(Fn [(Ref (Array Double) a)] Double)
(pvariance data)
Compute the population variance of the samples data.
quartiles
(Fn [(Ref (Array Double) a)] (Array Double))
(quartiles data)
Compute the quartiles of the samples data.
stdev
(Fn [(Ref (Array Double) a)] Double)
(stdev data)
Compute the standard deviation of the samples data.
summary
(Fn [(Ref (Array Double) a)] Statistics.Summary)
(summary samples)
Compute a variety of statistical values from a list of samples.
variance
(Fn [(Ref (Array Double) a)] Double)
(variance data)
Compute the variance of the samples data.