n_distinct {tidytable} | R Documentation |
Count the number of unique values in a vector
Description
This is a faster version of length(unique(x))
that calls data.table::uniqueN()
.
Usage
n_distinct(..., na.rm = FALSE)
Arguments
... |
vectors of values |
na.rm |
If |
Examples
x <- sample(1:10, 1e5, rep = TRUE)
n_distinct(x)
[Package tidytable version 0.11.1 Index]