Introduction
Booted is a Rust crate for bootstrapping estimators of arbitrary data structures. It makes no assumptions about what shape your data may be.
Quick Start
let estimator = new
.data_len
.from
.build;
let bootstrap = builder
.estimator
.n_boot
.build;
let result = bootstrap.run;
let summary: BootstrapSummary = result.summarize;
Algorithms
Currently supported are simple n-out-of-n bootstrap, m-out-of-n bootstrap and block bootstrap.
Roadmap
- Optional higher level API
- BCa, Bayesian, ABC