statistics-0.7.0.0: 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 -> Vector DoubleSource

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

resample :: PrimMonad m => Gen (PrimState m) -> [Estimator] -> Int -> Sample -> m [Resample]Source

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