norm                  package:minet                  R Documentation

_D_a_t_a _N_o_r_m_a_l_i_z_a_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     Normalizes data 'x' using the following code :
     (x-min(x))/(max(x-min(x))).

_U_s_a_g_e:

     norm(x)

_A_r_g_u_m_e_n_t_s:

       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.

_V_a_l_u_e:

     'norm' returns the data.frame 'x' with normalized values (i.e.
     values ranging from 0 to 1)

_E_x_a_m_p_l_e_s:

     data <- runif(100,-10,10)
     ndata <- norm(data)

