scaling {compindexR} | R Documentation |
Normalization and standardization techniques
scaling(x, method = "min-max")
x |
A Dataframe |
method |
Standardization or normalization technique. So far "min-max" and "standardization" are available |
A data frame
x <- data.frame(rnorm(20),rnorm(20),rnorm(20),rnorm(20))
scaling(x,method = "min-max")