
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
.kOverA(k, A=100, na.rm=TRUE)
TRUE
any NA
's will be removed.A
and k
.pOverA
fg <- kOverA(5, 100)
fg(90:100)
fg(98:110)
Run the code above in your browser using DataLab