https://github.com/hadley/dplyr
Raw File
Tip revision: 3a7371f3206226a346a43ba70bfbaf82b6dbd605 authored by Romain Francois on 27 May 2019, 07:54:05 UTC
calling tools:::.check_package_ASCII_code() to find the non ascii cran notes about
Tip revision: 3a7371f
grouped_df.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/grouped-df.r
\name{grouped_df}
\alias{grouped_df}
\alias{is.grouped_df}
\alias{is_grouped_df}
\title{A grouped data frame.}
\usage{
grouped_df(data, vars, drop = FALSE)

is.grouped_df(x)

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

\item{vars}{a character vector or a list of \code{\link[=name]{name()}}}

\item{drop}{When \code{.drop = TRUE}, empty groups are dropped.}
}
\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 unevaluated expressions for you.
}
\keyword{internal}
back to top