irank             package:exactRankTests             R Documentation

_I_n_t_e_g_e_r _R_a_n_k_s

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

     Compute the number of elements less or equal the elements in a
     given vector.

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

     irank(x, ox = NULL)

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

       x: a numeric vector. 

      ox: 'order(x)', optionally (for efficiency in case 'order(x)' is
          already known). 

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

     A vector of integers.

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

     x <- rnorm(10)
     irank(x)
     rank(x)
     x <- c(1,2,3,3,0)
     irank(x)
     rank(x)

