Module Resampling.Bootstrap

module Bootstrap: sig .. end

type estimate = {
   point :float; (*Point estimate.*)
   lower_bound :float; (*Lower bound of the estimate confidence interval*)
   upper_bound :float; (*Upper bound of the estimate confidence interval*)
   confidence_level :float; (*Condifence level corresponding to the above intervals.*)
}
val bca : ?rng:Gsl.Rng.t ->
?confidence_level:float ->
estimator:(float array -> float) ->
n_iter:int -> float array -> estimate
Bias-corrected and accelerated (BCa) bootstrap.