commonstats 0.1.0

WASM-first Rust statistics: descriptives, hypothesis tests, distributions, density estimation, transforms, and resampling — validated against SciPy/R.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Data transformations: ranking, normal scores, power transforms, PIT family.

pub mod rank;
pub mod normal_scores;
pub mod quantile_normalize;
pub mod power;
#[cfg(feature = "dist")]
pub mod pit;

pub use rank::{rank, Ties};
pub use normal_scores::normal_scores;
pub use quantile_normalize::quantile_normalize;
pub use power::{box_cox, yeo_johnson};
#[cfg(feature = "dist")]
pub use pit::{inv_pit, pit, quantile_map};