Statistics

is a module for providing various statistical analyses on a collection of values.

grouped-median

defn

(Fn [(Ref (Array Double) a), Int] Double)

                        (grouped-median data interval)
                    

Compute the grouped median of the samples data.

high-median

defn

(Fn [(Ref (Array Double) a)] Double)

                        (high-median data)
                    

Compute the high median of the samples data.

iqr

defn

(Fn [(Ref (Array Double) a)] Double)

                        (iqr data)
                    

Compute the interquartile range.

low-median

defn

(Fn [(Ref (Array Double) a)] Double)

                        (low-median data)
                    

Compute the low median of the samples data.

mean

defn

(Fn [(Ref (Array a) b)] a)

                        (mean data)
                    

Compute the mean of the samples data.

median

defn

(Fn [(Ref (Array Double) a)] Double)

                        (median data)
                    

Compute the median of the samples data.

pstdev

defn

(Fn [(Ref (Array Double) a)] Double)

                        (pstdev data)
                    

Compute the population standard deviation of the samples data.

pstdev-pct

meta-stub

a

Compute the standard deviation of the samples data as a percentile.

pvariance

defn

(Fn [(Ref (Array Double) a)] Double)

                        (pvariance data)
                    

Compute the population variance of the samples data.

quartiles

defn

(Fn [(Ref (Array Double) a)] (Array Double))

                        (quartiles data)
                    

Compute the quartiles of the samples data.

stdev

defn

(Fn [(Ref (Array Double) a)] Double)

                        (stdev data)
                    

Compute the standard deviation of the samples data.

stdev-pct

defn

(Fn [(Ref (Array Double) a)] Double)

                        (stdev-pct data)
                    

summary

defn

(Fn [(Ref (Array Double) a)] Statistics.Summary)

                        (summary samples)
                    

Compute a variety of statistical values from a list of samples.

variance

defn

(Fn [(Ref (Array Double) a)] Double)

                        (variance data)
                    

Compute the variance of the samples data.