statistics-0.6.0.2: A library of statistical types, data, and functionsSource codeContentsIndex
Statistics.Types
Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com
Description
Types for working with statistics.
Synopsis
type Estimator = Sample -> Double
type Sample = Vector Double
type WeightedSample = Vector (Double, Double)
type Weights = Vector Double
Documentation
type Estimator = Sample -> DoubleSource
A function that estimates a property of a sample, such as its mean.
type Sample = Vector DoubleSource
Sample data.
type WeightedSample = Vector (Double, Double)Source
Sample with weights. First element of sample is data, second is weight
type Weights = Vector DoubleSource
Weights for affecting the importance of elements of a sample.
Produced by Haddock version 2.4.2