Learn R Programming

functools (version 0.2.0)

Reject: Reject

Description

Reject() is the opposite of Filter. Reject applies the negation of the unary predicate function f to each element of x, coercing to logical if necessary, and returns the subset of x for which this gives true. Note that possible NA values are currently always taken as false; control over NA handling may be added in the future.

Usage

Reject(f, x)

Arguments

f
a predicate function.
x
a vector.

Value

x filtered where f applies

See Also

Other predicate functionals: All; Any

Examples

Run this code
# Some examples
Filter(function(x) x < 5, 1:10)
Reject(function(x) x < 5, 1:10)

Run the code above in your browser using DataLab