https://github.com/hadley/dplyr
Raw File
Tip revision: 34b4be202e89716c4fa3161cf0b194f31ad6e72c authored by hadley on 23 June 2016, 21:54:59 UTC
Prepare for release
Tip revision: 34b4be2
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 unusued 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 possibilites
}
}
\keyword{internal}

back to top