A filter function to filter according to the maximum.
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
.
maxA(A=75, na.rm=TRUE)
A |
The value that at least one element must exceed. |
na.rm |
If |
maxA
returns a function with an environment containing a binding
for A
.
R. Gentleman
ff <- maxA(30) ff(1:10) ff(28:31)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.