Module rusty_machine::data::transforms [] [src]

The Transforms module

This module contains the Transformer trait 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.

Reexports

pub use self::minmax::MinMaxScaler;
pub use self::standardize::Standardizer;

Modules

minmax

The Min-Max transformer

standardize

The Standardizing Transformer

Traits

Transformer

Trait for data transformers