normalise {moocore} | R Documentation |
Normalise points
Description
Normalise points per coordinate to a range, e.g., c(1,2)
, where the
minimum value will correspond to 1 and the maximum to 2. If bounds are
given, they are used for the normalisation.
Usage
normalise(x, to_range = c(1, 2), lower = NA, upper = NA, maximise = FALSE)
Arguments
x |
|
to_range |
|
lower , upper |
|
maximise |
|
Value
matrix()
A numerical matrix
Author(s)
Manuel López-Ibáñez
Examples
data(SPEA2minstoptimeRichmond)
# The second objective must be maximized
head(SPEA2minstoptimeRichmond[, 1:2])
head(normalise(SPEA2minstoptimeRichmond[, 1:2], maximise = c(FALSE, TRUE)))
head(normalise(SPEA2minstoptimeRichmond[, 1:2], to_range = c(0,1), maximise = c(FALSE, TRUE)))