Reputation: 4501
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?
Upvotes: 1
Views: 202
Reputation: 4150
I think they develop a function on a branch then pull said branch across is already "done" so no branch for it, you can see on github.com the current branches being worked on, here is the across branch github.com/tidyverse/dplyr/pull/4586
Upvotes: 1
Reputation: 5529
Is this not the right across function?
https://github.com/tidyverse/dplyr/blob/master/R/across.R
Upvotes: 0