maxA               package:genefilter               R Documentation

_A _f_i_l_t_e_r _f_u_n_c_t_i_o_n _t_o _f_i_l_t_e_r _a_c_c_o_r_d_i_n_g _t_o _t_h_e _m_a_x_i_m_u_m.

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

     'maxA' returns a function with the parameter 'A' bound. The
     returned function evaluates to 'TRUE' if any element of its
     argument is larger than 'A'.

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

     maxA(A=75, na.rm=TRUE)

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

       A: The value that at least one element must exceed. 

   na.rm: If 'TRUE' then 'NA''s are removed. 

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

     'maxA' returns a function with an environment containing a binding
     for 'A'.

_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:

        ff <- maxA(30)
        ff(1:10)
        ff(28:31)

