├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── template-package.r └── template.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── man └── template.Rd ├── template.Rproj ├── tests ├── testthat.R └── testthat │ └── test_something.R └── vignettes ├── intro.Rmd └── manuscript.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | vignettes/*_cache/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2015 2 | COPYRIGHT HOLDER: Carl Boettiger 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/template-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/R/template-package.r -------------------------------------------------------------------------------- /R/template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/R/template.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/man/template.Rd -------------------------------------------------------------------------------- /template.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/template.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_something.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/tests/testthat/test_something.R -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/manuscript.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cboettig/template/HEAD/vignettes/manuscript.Rmd --------------------------------------------------------------------------------