%notin% {DIZtools}R Documentation

notin helper function. Opposite of 'in' function.

Description

Function to return elements of x that are not in y.

Usage

x %notin% y

Arguments

x

Object 1.

y

Object 2.

Value

Returns the result of !

Examples

tmp1 <- c("a","b","c")
tmp2 <- c("b", "c", "d")
tmp1 %notin% tmp2

[Package DIZtools version 1.0.1 Index]