kOverA package:genefilter R Documentation _A _f_i_l_t_e_r _f_u_n_c_t_i_o_n _f_o_r _k _e_l_e_m_e_n_t_s _l_a_r_g_e_r _t_h_a_n _A. _D_e_s_c_r_i_p_t_i_o_n: 'kOverA' returns a filter function with bindings for 'k' and 'A'. This function evaluates to 'TRUE' if at least 'k' of the arguments elements are larger than 'A'. _U_s_a_g_e: kOverA(k, A=100, na.rm=TRUE) _A_r_g_u_m_e_n_t_s: A: The value you want to exceed. k: The number of elements that have to exceed A. na.rm: If set to 'TRUE' any 'NA''s will be removed. _V_a_l_u_e: A function with bindings for 'A' and 'k'. _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: fg <- kOverA(5, 100) fg(90:100) fg(98:110)