//! The Transforms module
//!
//! This module contains the `Transformer` and `Invertible` traits and reexports
//! the transformers from child modules.
//!
//! The `Transformer` trait provides a shared interface for all of the
//! data preprocessing transformations in rusty-machine.
//!
//! The transformers provide preprocessing transformations which are
//! commonly used in machine learning.
use error;
pub use MinMaxScaler;
pub use Shuffler;
pub use Standardizer;
/// Trait for data transformers
/// Trait for invertible data transformers