Statistics

Summary

module

Module

grouped-median

defn

(λ [(Ref (Array Double)), Int] Double)

                    (grouped-median data interval)
                

Compute the grouped median of the samples data.

high-median

defn

(λ [(Ref (Array Double))] Double)

                    (high-median data)
                

Compute the high median of the samples data.

iqr

defn

(λ [(Ref (Array Double))] Double)

                    (iqr data)
                

Compute the interquartile range.

low-median

defn

(λ [(Ref (Array Double))] Double)

                    (low-median data)
                

Compute the low median of the samples data.

mean

defn

(λ [(Ref (Array a))] a)

                    (mean data)
                

Compute the mean of the samples data.

median

defn

(λ [(Ref (Array Double))] Double)

                    (median data)
                

Compute the median of the samples data.

pstdev

defn

(λ [(Ref (Array Double))] Double)

                    (pstdev data)
                

Compute the population standard deviation of the samples data.

pstdev-pct

doc-stub

a

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

pvariance

defn

(λ [(Ref (Array Double))] Double)

                    (pvariance data)
                

Compute the population variance of the samples data.

quartiles

defn

(λ [(Ref (Array Double))] (Array Double))

                    (quartiles data)
                

Compute the quartiles of the samples data.

stdev

defn

(λ [(Ref (Array Double))] Double)

                    (stdev data)
                

Compute the standard deviation of the samples data.

stdev-pct

defn

(λ [(Ref (Array Double))] Double)

                    (stdev-pct data)
                

summary

defn

(λ [(Ref (Array Double))] Summary)

                    (summary samples)
                

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

variance

defn

(λ [(Ref (Array Double))] Double)

                    (variance data)
                

Compute the variance of the samples data.