https://github.com/hadley/dplyr
Raw File
Tip revision: 5ac9490a55133c1141715e3f7b10bcf740706446 authored by hadley on 08 June 2017, 23:28:20 UTC
Update for CRAN submission
Tip revision: 5ac9490
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