outersect: Find values not shared between two vectors

View source: R/outersect.R

outersectR Documentation

Find values not shared between two vectors

Description

Find values not shared between two vectors

Usage

outersect(x, y)

Arguments

x

vector

y

vector

Value

vector of values not present in both vectors

Examples

x <- c(1,2,3,4)
y <- c(1,3,5,7)
outersect(x, y)


johngodlee/JLGMisc documentation built on June 29, 2024, 9:15 p.m.