grapes-notin-grapes: notin helper function. Opposite of 'in' function.

%notin%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

DIZtools documentation built on Sept. 18, 2023, 9:07 a.m.