not_in: Determine if value(s) are NOT in another value or set.

Description Usage Arguments Details Examples

View source: R/not_in.R

Description

Determine if value(s) are NOT in another value or set.

Usage

1
not_in(x, y)

Arguments

x

single value or vector

y

single value or vector

Details

This is a helper function to see if values are NOT IN other values. Mainly this helps me quickly check without having to negate the This is a test to see if this function is helpful, and might be deleted. later on.

Examples

1
2
3
4
5
6
library(learylib)
library(dplyr)

"test" %>% not_in(c("quiz", "homework"))

"test" %>% not_in(c("quiz", "test"))

mleary/learylib documentation built on Sept. 6, 2020, 9:19 p.m.