├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── dataset.R ├── function.R ├── new_project.R └── template-package.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── analyses └── README.md ├── data-raw └── README.md ├── data └── README.md ├── docs ├── 404.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── exampledataset.html │ ├── examplefunction.html │ ├── index.html │ ├── new_project.html │ └── template-package.html ├── files.png ├── inst └── makefile │ └── makefile.R ├── man ├── exampledataset.Rd ├── examplefunction.Rd ├── new_project.Rd └── template-package.Rd ├── manuscript └── README.md └── tests ├── testthat.R └── testthat └── test_fake.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/dataset.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/R/dataset.R -------------------------------------------------------------------------------- /R/function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/R/function.R -------------------------------------------------------------------------------- /R/new_project.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/R/new_project.R -------------------------------------------------------------------------------- /R/template-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/R/template-package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analyses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/analyses/README.md -------------------------------------------------------------------------------- /data-raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/data-raw/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/data/README.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/exampledataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/exampledataset.html -------------------------------------------------------------------------------- /docs/reference/examplefunction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/examplefunction.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/new_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/new_project.html -------------------------------------------------------------------------------- /docs/reference/template-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/docs/reference/template-package.html -------------------------------------------------------------------------------- /files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/files.png -------------------------------------------------------------------------------- /inst/makefile/makefile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/inst/makefile/makefile.R -------------------------------------------------------------------------------- /man/exampledataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/man/exampledataset.Rd -------------------------------------------------------------------------------- /man/examplefunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/man/examplefunction.Rd -------------------------------------------------------------------------------- /man/new_project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/man/new_project.Rd -------------------------------------------------------------------------------- /man/template-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/man/template-package.Rd -------------------------------------------------------------------------------- /manuscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/manuscript/README.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_fake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pakillo/template/HEAD/tests/testthat/test_fake.R --------------------------------------------------------------------------------