score_standardization_methods {iteremoval} | R Documentation |
Score standardization methods of function
feature.removal
.
min_max(x, na.rm = TRUE)
x |
The first parameter of score standardization method used in
|
na.rm |
Bool. Remove NA or not. |
Numeric, normalized x
to 0-1 range.
min_max(1:5) min_max(c(1:5, NA), na.rm=TRUE)