Quantcast
Viewing all articles
Browse latest Browse all 205423

Where is Tidyverse dev version source code located?

The dev version of dplyr introduces a new across() function that applies functions to a selection of columns. I can install the dev version of dplyr in R like this:

# install.packages("devtools")
devtools::install_github("tidyverse/dplyr")

Before I install the dev version I'd like to examine the source code from dplyr's github repo. The problem is that it's not located there. Where is the dev version of dplyr located? Of any Tidyverse package for that matter?

Maybe when I issue the devtools::install_github("tidyverse/dplyr") command it just installs whatever commits have been merged at that snapshot in time, to the latest release of dplyr?


Viewing all articles
Browse latest Browse all 205423

Trending Articles