Learn R Programming

VectorForgeML (version 0.1.0)

MinMaxScaler-class: Standard Scaler

Description

Standardizes features by removing mean and scaling to unit variance.

Arguments

Value

StandardScaler object

Details

Provides functionality for MinMaxScaler operations.

See Also

VectorForgeML-package

Examples

Run this code
  s <- MinMaxScaler$new()
  x <- matrix(rnorm(20), nrow=10)
  s$fit(x)
  s$transform(x)

Run the code above in your browser using DataLab