kendall              package:agricolae              R Documentation

_C_o_r_r_e_l_a_t_i_o_n _o_f _K_e_n_d_a_l_l

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

     Correlation of Kendall two set. Compute exact p-value with ties.

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

     kendall(data1, data2)

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

   data1: vector 

   data2: vector 

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

  data1 : Numeric

  data2 : Numeric

_A_u_t_h_o_r(_s):

     Felipe de Mendiburu

_R_e_f_e_r_e_n_c_e_s:

     Numerical Recipes in C. Second Edition. Pag 634

_S_e_e _A_l_s_o:

     'correlation'

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

     library(agricolae)
     x <-c(1,1,1,4,2,2,3,1,3,2,1,1,2,3,2,1,1,2,1,2)
     y <-c(1,1,2,3,4,4,2,1,2,3,1,1,3,4,2,1,1,3,1,2)
     kendall(x,y)

