zoo (version 1.1-0)

MATCH: Value Matching

Description

MATCH is a generic function for value matching.

Usage

MATCH(x, table, nomatch = NA, ...)

Arguments

x
an object.
table
the values to be matched against.
nomatch
the value to be returned in the case when no match is found. Note that it is coerced to integer.
...
further arguments to be passed to methods.

Details

MATCH is a new generic function which aims at providing the functionality of the non-generic base function match for arbitrary objects. Currently, there is only a default method which simply calls match.

See Also

match

Examples

Run this code
MATCH(1:5, 2:3)

Run the code above in your browser using DataCamp Workspace