
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)
TRUE
then NA
's are removed.maxA
returns a function with an environment containing a binding
for A
.pOverA
ff <- maxA(30)
ff(1:10)
ff(28:31)
Run the code above in your browser using DataLab