├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── copy-to-local-tempfile.R ├── funspotr-package.R ├── helpers.R ├── list-files-gh-gists.R ├── list-files-gh-repo.R ├── list-files-wd.R ├── network-plot.R ├── spot-files.R ├── spot-funs.R ├── spot-pkgs.R └── spot-tags.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── funspotr.Rproj ├── inst ├── ex-rmd-tags.Rmd └── header.md └── man ├── check_pkgs_availability.Rd ├── figures ├── how-funspotr-works.png ├── lifecycle-archived.svg ├── lifecycle-defunct.svg ├── lifecycle-deprecated.svg ├── lifecycle-experimental.svg ├── lifecycle-maturing.svg ├── lifecycle-questioning.svg ├── lifecycle-stable.svg ├── lifecycle-superseded.svg └── logo.png ├── funspotr-package.Rd ├── install_missing_pkgs.Rd ├── list_files_github_gists.Rd ├── list_files_github_repo.Rd ├── list_files_wd.Rd ├── network_plot.Rd ├── spot_funs.Rd ├── spot_funs_custom.Rd ├── spot_funs_files.Rd ├── spot_pkgs.Rd ├── spot_pkgs_from_DESCRIPTION.Rd ├── spot_pkgs_used.Rd ├── spot_tags.Rd ├── str_detect_r_docs.Rd └── unnest_results.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: funspotr authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/copy-to-local-tempfile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/copy-to-local-tempfile.R -------------------------------------------------------------------------------- /R/funspotr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/funspotr-package.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/list-files-gh-gists.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/list-files-gh-gists.R -------------------------------------------------------------------------------- /R/list-files-gh-repo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/list-files-gh-repo.R -------------------------------------------------------------------------------- /R/list-files-wd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/list-files-wd.R -------------------------------------------------------------------------------- /R/network-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/network-plot.R -------------------------------------------------------------------------------- /R/spot-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/spot-files.R -------------------------------------------------------------------------------- /R/spot-funs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/spot-funs.R -------------------------------------------------------------------------------- /R/spot-pkgs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/spot-pkgs.R -------------------------------------------------------------------------------- /R/spot-tags.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/R/spot-tags.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /funspotr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/funspotr.Rproj -------------------------------------------------------------------------------- /inst/ex-rmd-tags.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/inst/ex-rmd-tags.Rmd -------------------------------------------------------------------------------- /inst/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/inst/header.md -------------------------------------------------------------------------------- /man/check_pkgs_availability.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/check_pkgs_availability.Rd -------------------------------------------------------------------------------- /man/figures/how-funspotr-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/how-funspotr-works.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/funspotr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/funspotr-package.Rd -------------------------------------------------------------------------------- /man/install_missing_pkgs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/install_missing_pkgs.Rd -------------------------------------------------------------------------------- /man/list_files_github_gists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/list_files_github_gists.Rd -------------------------------------------------------------------------------- /man/list_files_github_repo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/list_files_github_repo.Rd -------------------------------------------------------------------------------- /man/list_files_wd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/list_files_wd.Rd -------------------------------------------------------------------------------- /man/network_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/network_plot.Rd -------------------------------------------------------------------------------- /man/spot_funs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_funs.Rd -------------------------------------------------------------------------------- /man/spot_funs_custom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_funs_custom.Rd -------------------------------------------------------------------------------- /man/spot_funs_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_funs_files.Rd -------------------------------------------------------------------------------- /man/spot_pkgs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_pkgs.Rd -------------------------------------------------------------------------------- /man/spot_pkgs_from_DESCRIPTION.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_pkgs_from_DESCRIPTION.Rd -------------------------------------------------------------------------------- /man/spot_pkgs_used.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_pkgs_used.Rd -------------------------------------------------------------------------------- /man/spot_tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/spot_tags.Rd -------------------------------------------------------------------------------- /man/str_detect_r_docs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/str_detect_r_docs.Rd -------------------------------------------------------------------------------- /man/unnest_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brshallo/funspotr/HEAD/man/unnest_results.Rd --------------------------------------------------------------------------------