ident                 package:assist                 R Documentation

_S_c_a_l_i_n_g _a _V_e_c_t_o_r

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

     Perform standarization of vector relative to another.

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

     ident(x, y = x)

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

       x: a numeric vector, matrix or data frame

       y: an optional numeric vector, matrix or data frame. Default is
          x.

_D_e_t_a_i_l_s:

     Scale 'y' based on 'x' component by component. For example, if
     both are a matrix, 
     y[,i]=(y[,]-min(x[,i]))/(max(x[,i])-min(x[,i])).

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

     a scaled 'y'.

