A Clojure library for calculating descriptive statistics. This is a port of Derrick Parkhurst's Ruby gem which can be viewed here.
descriptivestatistics.core=> (mean [1 2 3 4])
2.5
descriptivestatistics.core=> (variance [1 2 3 4])
1.25
descriptivestatistics.core=> (standard-deviation [1 2 3 4])
1.118033988749895
descriptivestatistics.core=> (percentile-from-value [1 2 3 4 5] 4)
60.0
MIT
nickmcd [at] gmail