allNA               package:genefilter               R Documentation

_A _f_i_l_t_e_r _f_u_n_c_t_i_o_n _t_o _d_e_t_e_r_m_i_n_e _i_f _a_l_l _e_l_e_m_e_n_t_s _o_f _a _v_e_c_t_o_r _a_r_e _N_A.

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

     'allNA' evaluates to 'FALSE' if all elements of its argument are
     'NA'. 'anyNA' evaluates to 'FALSE' if any of the elements of its
     argument are 'NA'.

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

     allNA(x)
     anyNA(x)

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

       x: The vector to test.

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

     'FALSE' if all elements of 'x' are 'NA'.

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

     R. Gentleman

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

     'pOverA'

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

       allNA(NA)
       allNA(1)
       anyNA(1)
       anyNA(NA)

