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

Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com

Statistics.Types

Description

Types for working with statistics.

Synopsis

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.