Performs a normalization of data. This scales all numeric variables in the range 0 - 1.
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, ...)
Object.
Arguments passed to or from other methods.
Toggle warnings on or off.
For a data frame, character vector of column names to be
standardized. If NULL
(the default), all variables will be
standardized.
For a data frame, character vector of column names to be excluded from standardization.
Standardized object.