Portability | portable |
---|---|
Stability | experimental |
Maintainer | bos@serpentine.com |
Safe Haskell | None |
Resampling statistics.
Documentation
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.
jackknife :: Estimator -> Sample -> Vector DoubleSource
Compute a statistical estimate repeatedly over a sample, each time omitting a successive element.
:: Gen (PrimState IO) | |
-> [Estimator] | Estimation functions. |
-> Int | Number of resamples to compute. |
-> Sample | Original sample. |
-> IO [Resample] |
O(e*r*s) Resample a data set repeatedly, with replacement, computing each estimate over the resampled data.
This function is expensive; it has to do work proportional to e*r*s, where e is the number of estimation functions, r is the number of resamples to compute, and s is the number of original samples.
To improve performance, this function will make use of all
available CPUs. At least with GHC 7.0, parallel performance seems
best if the parallel garbage collector is disabled (RTS option
-qg
).