norm {minet} | R Documentation |
Normalizes data x
using the following code : (x-min(x))/(max(x-min(x))).
norm(x)
x |
A data.frame or matrix or vector containing the data to be normalized. In this package the norm method is used to
normalize the network's weighted adjacency matrices. |
norm
returns the data.frame x
with normalized values (i.e. values ranging from 0 to 1)
data <- runif(100,-10,10) ndata <- norm(data)