is_uniq: Returns TRUE where no elements appear more than once

Description Usage Arguments Value See Also Examples

View source: R/predicates.R

Description

This function is meant to take only a vector. It relies heavily on the duplicated function where it can be thought of as the inverse. Where this function differs, though–besides being only meant for one vector or column–is that it marks the first occurrence of a duplicated value as "non unique", as well.

Usage

1
is_uniq(x, allow.na = FALSE)

Arguments

x

A vector to check for unique elements in

allow.na

A logical indicating whether NAs should be preserved as missing values in the return value (FALSE) or if they should be treated just like any other value (TRUE) (default is FALSE)

Value

A vector of the same length where the corresponding element is TRUE if the element only appears once in the vector and FALSE otherwise

See Also

duplicated

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
is_uniq(1:10)

## Not run: 
# returns FALSE where a "5" appears
is_uniq(c(1:10, 5))

## End(Not run)

library(magrittr)

## Not run: 
# this fails 4 times
mtcars %>% assert(is_uniq, qsec)

## End(Not run)

lorenzwalthert/assertr documentation built on May 20, 2019, 4:06 p.m.