unit_normalization {YEAB} | R Documentation |
Min-max normalization (also feature rescaling)
Description
Min-max normalization (also feature rescaling)
Usage
unit_normalization(x)
Arguments
x |
numeric, vector of values to rescale |
Value
A numeric vector rescaled in the range x' \in [0, 1]
Examples
x <- 5:100
x_scaled <- unit_normalization(x)
x_scaled
[Package YEAB version 1.0.6 Index]