Module Resampling

module Resampling: sig .. end
Resampling statistics.

val resample : ?rng:Gsl.Rng.t ->
estimator:('a array -> 'b) -> n_iter:int -> 'a array -> 'b array
Repeatidly resamples a given data set with replacement, computing a statistical estimate over the resampled data.
val jackknife : estimator:('a array -> 'b) -> 'a array -> 'b array
Repeatidly computes a statistical estimate over the data set, leaving out a single observation at a time.
module Bootstrap: sig .. end