1//! Preprocessing for statistical learning — feature scaling and design-matrix prep.
2//! Reuses `statistics::descriptive`. Train/test partitioning lives with the
3//! `resampling` module (it shares the fold/shuffle machinery).
45pub mod scaling;
67pub use scaling::StandardScaler;