| norm {minet} | R Documentation |
Normalizes data x using the following code : (x-min(x))/(max(x-min(x))).
norm(x)
x |
the data to be normalized. |
norm returns the argument x with normalized values (i.e. values ranging from 0 to 1)
data <- runif(100,-10,10) ndata <- norm(data)