https://github.com/hadley/dplyr
Raw File
Tip revision: 5e3f3ec7dd464d9251d2ec8eb9a3c31624130580 authored by Hadley Wickham on 28 May 2020, 23:52:31 UTC
Increment version number
Tip revision: 5e3f3ec
n_distinct.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/distinct.R
\name{n_distinct}
\alias{n_distinct}
\title{Efficiently count the number of unique values in a set of vector}
\usage{
n_distinct(..., na.rm = FALSE)
}
\arguments{
\item{\dots}{vectors of values}

\item{na.rm}{if \code{TRUE} missing values don't count}
}
\description{
This is a faster and more concise equivalent of \code{length(unique(x))}
}
\examples{
x <- sample(1:10, 1e5, rep = TRUE)
length(unique(x))
n_distinct(x)
}
back to top