assertr (version 2.7)

is_uniq: Returns TRUE where no elements appear more than once

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

is_uniq(..., allow.na = FALSE)

Arguments

...

One or more vectors to check for unique combinations of elements

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

Run this code
# NOT RUN {
is_uniq(1:10)
is_uniq(c(1,1,2,3), c(1,2,2,3))

# }
# NOT RUN {
# returns FALSE where a "5" appears
is_uniq(c(1:10, 5))
# }
# NOT RUN {
library(magrittr)

# }
# NOT RUN {
# this fails 4 times
mtcars %>% assert(is_uniq, qsec)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace