Learn R Programming

parameters (version 0.1.0)

normalize: Normalization

Description

Performs a normalization of data. This scales all numeric variables in the range 0 - 1.

Usage

normalize(x, ...)

# S3 method for numeric normalize(x, verbose = TRUE, ...)

# S3 method for grouped_df normalize(x, select = NULL, exclude = NULL, ...)

# S3 method for data.frame normalize(x, select = NULL, exclude = NULL, ...)

Arguments

x

Object.

...

Arguments passed to or from other methods.

verbose

Toggle warnings on or off.

select

For a data frame, character vector of column names to be standardized. If NULL (the default), all variables will be standardized.

exclude

For a data frame, character vector of column names to be excluded from standardization.

Value

Standardized object.