nexus-stats-core 3.0.0

Core types and utilities shared across nexus-stats subcrates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Online feature normalization.

#[cfg(any(feature = "std", feature = "libm"))]
mod zscore;
#[cfg(any(feature = "std", feature = "libm"))]
pub use zscore::*;

mod minmax;
pub use minmax::*;

#[cfg(feature = "alloc")]
mod quantile;
#[cfg(feature = "alloc")]
pub use quantile::*;