forked from tidyverse/dplyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdplyr.r
28 lines (28 loc) · 924 Bytes
/
dplyr.r
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
28
#' dplyr: a grammar of data manipulation
#'
#' 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).
#'
#' 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")}
#'
#' @docType package
#' @name dplyr
#' @useDynLib dplyr
#' @import assertthat
#' @importFrom utils head tail
#' @importFrom Rcpp cppFunction Rcpp.plugin.maker
#' @importFrom stats setNames update
NULL