forked from tidyverse/dplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdplyr.Rd
28 lines (25 loc) · 856 Bytes
/
dplyr.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dplyr.r
\docType{package}
\name{dplyr}
\alias{dplyr}
\alias{dplyr-package}
\title{dplyr: a grammar of data manipulation}
\description{
dplyr provides a flexible grammar of data manipulation. It's the next
iteration of plyr, focused on tools for working with data frames (hence the
\emph{d} in the name).
}
\details{
It has three main goals:
\itemize{
\item Identify the most important data manipulation verbs and make them
easy to use from R.
\item Provide blazing fast performance for in-memory data by writing key
pieces in C++ (using Rcpp)
\item Use the same interface to work with data no matter where it's stored,
whether in a data frame, a data table or database.
}
To learn more about dplyr, start with the vignettes:
\code{browseVignettes(package = "dplyr")}
}