https://github.com/hadley/dplyr
Raw File
Tip revision: 1405946245d65c32b64ee3ffc2e7ba24a8fb445c authored by Romain Francois on 31 August 2015, 16:34:19 UTC
oops forgot to define y. 🍤
Tip revision: 1405946
grouped_df.Rd
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/grouped-df.r
\name{grouped_df}
\alias{grouped_df}
\alias{is.grouped_df}
\title{A grouped data frame.}
\usage{
grouped_df(data, vars, drop = TRUE)

is.grouped_df(x)
}
\arguments{
\item{data}{a tbl or data frame.}

\item{vars}{a list of quoted variables.}

\item{drop}{if \code{TRUE} preserve all factor levels, even those without
data.}
}
\description{
The easiest way to create a grouped data frame is to call the \code{group_by}
method on a data frame or tbl: this will take care of capturing
the unevalated expressions for you.
}
\keyword{internal}

back to top