is.subset {rje}R Documentation

Check subset inclusion

Description

Determines whether one vector contains all the elements of another.

Usage

is.subset(x, y)

Arguments

x

vector.

y

vector.

Details

Determines whether or not every element of x is also found in y. Returns TRUE if so, and FALSE if not.

Value

A logical of length 1.

Author(s)

Robin Evans

See Also

setmatch.

Examples


is.subset(1:2, 1:3)
is.subset(1:2, 2:3)


[Package rje version 1.10.10 Index]