MODE                package:rflowcyt                R Documentation

_E_s_t_i_m_a_t_e _t_h_e _h_i_g_h_e_s_t _m_o_d_e _o_f _a _m_u_l_t_i_m_o_d_a_l_e _d_i_s_t_r_i_b_u_t_i_o_n

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

     MODE returns the highest mode of a multimodale distribution
     estimate for a given data vector

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

      MODE(x, na.rm=TRUE)

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

       x: numeric vector 

   na.rm: logical

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

       x: highest mode

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

     Nolwenn Le Meur

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

     'plotQA.FCS'

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

      set.seed(12345)
      x<-rnorm(50)
      h<-MODE(x)

