Created
April 23, 2020 15:29
-
-
Save slopp/89d51b918ee38a16c989b18f36ff4666 to your computer and use it in GitHub Desktop.
Get packages by license
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(dplyr) | |
library(tibble) | |
REPO <- "http://cran.rstudio.com" | |
LICENSE <- "AGPL" | |
p <- available.packages(repos = REPO) | |
p_tbl <- as_tibble(p) | |
p_tbl %>% | |
filter(License == !!LICENSE) %>% | |
pull(Package) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment