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)