numNAFun             package:marrayTools             R Documentation

_A _f_u_n_c_t_i_o_n _t_h_a_t _c_a_l_c_u_l_a_t_e_s _t_h_e _n_u_m_b_e_r _o_f _N_A _o_f _e_a_c_h _g_e_n_e _i_n _a
_m_u_l_t_i-_s_l_i_d_e _m_i_c_r_o_a_r_r_a_y _e_x_p_e_r_i_m_e_n_t.

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

     Returns a function that calculates the number of NA of each gene
     across multi-slide microarray experiment.

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

     numNAFun()

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

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

     Returns a function.

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

     Yee Hwa (Jean) Yang

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

     'is.na'

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

     x <- rnorm(10)
     x[8] <- NA
     y <- numNAFun()
     y(x)

