Reject: Reject values for which a predicate function returns TRUE.

Description Usage Arguments Value See Also Examples

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

1
Reject(.x, .f)

Arguments

.x

a vector.

.f

a predicate function.

Value

.x filtered where .f applies

See Also

Other predicate functionals: All; Any

Examples

1
2
3
# Some examples
Filter(function(x) x < 5, 1:10)
Reject(1:10, function(x) x < 5)

paulhendricks/functools documentation built on May 24, 2019, 8:41 p.m.