├── .Rprofile ├── .dockerignore ├── .env ├── .git-crypt ├── .gitattributes └── keys │ └── default │ └── 0 │ ├── 473A7BC057E150CCEA286E7D0ED8A9DA81F20F7A.gpg │ └── 4A1653E6FDB48C85EC4702B9E7B170AD3B19DAA4.gpg ├── .gitattributes ├── .github ├── .gitignore └── workflows │ └── build-targets.yaml ├── .gitignore ├── Dockerfile ├── Makefile ├── R ├── long_running_test_function.R ├── utils.R └── utils_gam.R ├── README.md ├── _targets.R ├── outputs └── .gitkeep ├── packages.R ├── renv.lock ├── renv ├── .gitignore ├── activate.R └── settings.dcf ├── reports ├── main.Rmd └── tests.Rmd └── repro-template.Rproj /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.Rprofile -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | renv/library 2 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.env -------------------------------------------------------------------------------- /.git-crypt/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.git-crypt/.gitattributes -------------------------------------------------------------------------------- /.git-crypt/keys/default/0/473A7BC057E150CCEA286E7D0ED8A9DA81F20F7A.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.git-crypt/keys/default/0/473A7BC057E150CCEA286E7D0ED8A9DA81F20F7A.gpg -------------------------------------------------------------------------------- /.git-crypt/keys/default/0/4A1653E6FDB48C85EC4702B9E7B170AD3B19DAA4.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.git-crypt/keys/default/0/4A1653E6FDB48C85EC4702B9E7B170AD3B19DAA4.gpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/build-targets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.github/workflows/build-targets.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/Makefile -------------------------------------------------------------------------------- /R/long_running_test_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/R/long_running_test_function.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_gam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/R/utils_gam.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/README.md -------------------------------------------------------------------------------- /_targets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/_targets.R -------------------------------------------------------------------------------- /outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/packages.R -------------------------------------------------------------------------------- /renv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/renv.lock -------------------------------------------------------------------------------- /renv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/renv/.gitignore -------------------------------------------------------------------------------- /renv/activate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/renv/activate.R -------------------------------------------------------------------------------- /renv/settings.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/renv/settings.dcf -------------------------------------------------------------------------------- /reports/main.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/reports/main.Rmd -------------------------------------------------------------------------------- /reports/tests.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/reports/tests.Rmd -------------------------------------------------------------------------------- /repro-template.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noamross/reprotemplate/HEAD/repro-template.Rproj --------------------------------------------------------------------------------