This function finds packages among repositories belonging to a selected account. They are returned as a vector of strings, each element being a repository (and in most cases, package) name.
Arguments
- user
character(1)
Name of a user or organization.- include_forks
logical(1)
Whether to include packages forked from other accounts.
See also
Functions for GitHub:
wood_github_dependencies()
,
wood_github_latest()
,
wood_github_tags()
,
wood_github_versions()
Functions that query available packages:
wood_bioc_packages()
,
wood_core_packages()
,
wood_cran_packages()
,
wood_local_packages()
,
wood_packages()
,
wood_runiverse_packages()
,
wood_url_packages()
Examples
# \donttest{
wood_github_packages("turtletopia")
#> [1] "aurrera" "gglgbtq" "ggpizza" "openaccess" "versionsort"
#> [6] "woodendesc"
# I moved most my packages to turtletopia
wood_github_packages("ErdaradunGaztea", include_forks = TRUE)
#> [1] "AmyloGraph" "attachment"
#> [3] "fuzzydf" "httptest"
#> [5] "icecream" "nsyllable"
#> [7] "pkgsearch" "playOmics"
#> [9] "Rwclust" "Shen-sq-similarity-kernel"
# }