statistics-0.11.0.0: A library of statistical types, data, and functions

Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com
Safe HaskellNone

Statistics.Types

Description

Types for working with statistics.

Synopsis

Documentation

data Estimator Source

An estimator of a property of a sample, such as its mean.

The use of an algebraic data type here allows functions such as jackknife and bootstrapBCA to use more efficient algorithms when possible.

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.