├── README.Rmd ├── README.md ├── dependsMASS ├── DESCRIPTION └── NAMESPACE ├── dependsdplyr ├── DESCRIPTION └── NAMESPACE ├── dependsdplyr2 ├── DESCRIPTION ├── NAMESPACE └── R │ └── function.R └── importsdplyr ├── DESCRIPTION ├── NAMESPACE └── R └── function.R /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/README.md -------------------------------------------------------------------------------- /dependsMASS/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/dependsMASS/DESCRIPTION -------------------------------------------------------------------------------- /dependsMASS/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/dependsMASS/NAMESPACE -------------------------------------------------------------------------------- /dependsdplyr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/dependsdplyr/DESCRIPTION -------------------------------------------------------------------------------- /dependsdplyr/NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /dependsdplyr2/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/dependsdplyr2/DESCRIPTION -------------------------------------------------------------------------------- /dependsdplyr2/NAMESPACE: -------------------------------------------------------------------------------- 1 | export(choose_cols) 2 | -------------------------------------------------------------------------------- /dependsdplyr2/R/function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/dependsdplyr2/R/function.R -------------------------------------------------------------------------------- /importsdplyr/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/importsdplyr/DESCRIPTION -------------------------------------------------------------------------------- /importsdplyr/NAMESPACE: -------------------------------------------------------------------------------- 1 | export(choose_cols) 2 | importFrom(dplyr, select) 3 | -------------------------------------------------------------------------------- /importsdplyr/R/function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeper/Depends/HEAD/importsdplyr/R/function.R --------------------------------------------------------------------------------