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

Portabilityportable
Stabilityexperimental
Maintainerbos@serpentine.com

Statistics.Resampling

Description

Resampling statistics.

Synopsis

Documentation

newtype Resample Source

A resample drawn randomly, with replacement, from a set of data points. Distinct from a normal array to make it harder for your humble author's brain to go wrong.

Constructors

Resample 

Instances

jackknife :: Estimator -> Sample -> UArr DoubleSource

Compute a statistical estimate repeatedly over a sample, each time omitting a successive element.

resample :: MTGen -> [Estimator] -> Int -> Sample -> IO [Resample]Source

Resample a data set repeatedly, with replacement, computing each estimate over the resampled data.