https://github.com/hadley/dplyr
Raw File
Tip revision: 4a944a80d5c3564a669bfe0c0a4af9fed86e92dd authored by Kirill Müller on 16 March 2018, 21:36:28 UTC
Merge branch 'r-0.7.4.9002' into production
Tip revision: 4a944a8
id.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/id.r
\name{id}
\alias{id}
\title{Compute a unique numeric id for each unique row in a data frame.}
\usage{
id(.variables, drop = FALSE)
}
\arguments{
\item{.variables}{list of variables}

\item{drop}{drop unused factor levels?}
}
\value{
a numeric vector with attribute n, giving total number of
possibilities
}
\description{
Properties:
\itemize{
\item \code{order(id)} is equivalent to \code{do.call(order, df)}
\item rows containing the same data have the same value
\item if \code{drop = FALSE} then room for all possibilities
}
}
\keyword{internal}
back to top