zima 0.1.0-alpha.0

An attempt to create a modern package for the needs of applied statistics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use rand::Rng;

pub trait Re<T> {
    type Item;
    fn re(&self, t: &T) -> impl Iterator<Item = Self::Item>;
}

mod shuffle;
mod bootstrap;
mod jackknife;
mod subsampling;
mod block_bootstrap;
mod wild_bootstrap;

pub use bootstrap::Bootstrap;
pub use jackknife::Jackknife;
pub use shuffle::Shuffle;
pub use subsampling::{Subsample, SamplingMode};