standard              package:rflowcyt              R Documentation

_E_s_t_i_m_a_t_e _t_h_e _c_r_i_t_i_c_a_l _b_a_n_d_w_i_d_t_h _f_o_r _s_p_e_c_i_f_i_c _n_u_m_b_e_r _o_f _m_o_d_e_s

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

     Standardize a numeric vector by its median and median absolute
     deviation (MAD).

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

     standard(x)

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

       x: the data vector to be standardized 

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

     returns the standardized version of x

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

     Kevin Rader

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

     Silverman, B.W. (1981). Using Kernel Density Estimates to
     Investigate Multimodality. J. Royal Statistical Society B, 43,
     97-99.

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

     'get.h', 'get.p', 'emp.f', 'get.num.modes'

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

      set.seed(12345)
      x<-rnorm(50,2,3)
      x1<-standard(x)
      c(median(x1),mad(x1))

