not: Get Elements only Existed in Dataset a

Description Usage Arguments Value Examples

View source: R/not.R

Description

Get elements only existed in dataset a.

Usage

1
2
3
not(...)

a %not% b

Arguments

...

one or more objects

a

one object

b

the other object

Value

elements only existed in dataset a

Examples

1
2
3
4
5
6
7
8
9
A <- c("a","b")
B <- c("a","b","c","d")
not(B, A)

E <- c('d')
not(B, A, E)
A <- c("a","b","c")
B <- c("a","b","c","d")
B %not% A

set documentation built on Feb. 26, 2021, 5:10 p.m.

Related to not in set...