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 29 30 31 32 33 34 35 36
|
# tidyselect
<!-- badges: start -->
[](https://codecov.io/gh/r-lib/tidyselect?branch=master)
[](https://cran.r-project.org/package=tidyselect)
[](https://github.com/r-lib/tidyselect/actions)
<!-- badges: end -->
## Overview
The tidyselect package is the backend of functions like `dplyr::select()`
or `dplyr::pull()` as well as several tidyr verbs. It allows you to
create selecting verbs that are consistent with other tidyverse packages.
* To learn about the selection syntax as a user of dplyr or tidyr, read
the user-friendly [Selection language](https://tidyselect.r-lib.org/reference/language.html) reference.
* To learn how to implement tidyselect in your own functions, read the
[Get started](https://tidyselect.r-lib.org/articles/tidyselect.html)
vignette.
* To learn exactly how the tidyselect syntax is interpreted, read the
[Technical descrition](https://tidyselect.r-lib.org/articles/syntax.html)
vignette.
## Installation
tidyselect is on CRAN. You can also install the development version
from github with:
```r
# install.packages("remotes")
remotes::install_github("r-lib/tidyselect")
```
|