├── .Rbuildignore ├── .github ├── CODE_OF_CONDUCT.md ├── dependabot.yml └── workflows │ ├── main.yml │ └── pr.yml ├── .gitignore ├── .pre-commit-config.yaml ├── DESCRIPTION ├── README.md ├── _common.R ├── _output.yml ├── _quarto.yml ├── _variables.yml ├── appendix.Rmd ├── badges ├── stats-bronze.png ├── stats-bronze.svg ├── stats-gold.png ├── stats-gold.svg ├── stats-silver.png └── stats-silver.svg ├── book.bib ├── custom.scss ├── favicon ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── icon_short_color.png └── icon_short_color_small.png ├── ghpagescname ├── index.Rmd ├── makefile ├── matomo.html ├── overview.Rmd ├── pkgdev.Rmd ├── pkgreview.Rmd ├── pkgsubmission.Rmd ├── preamble.tex ├── process.Rmd ├── reading.Rmd ├── scripts ├── chunknames ├── cloc.R ├── cran-cloc.Rds ├── getZoteroNotes.R ├── joss-abstracts │ └── categories.Rmd ├── makefile ├── pkgcheck-ex.Rmd └── pkgcheck-ex.md ├── standards.Rmd ├── standards ├── README.md ├── bayesian.Rmd ├── distributions.Rmd ├── eda.Rmd ├── general.Rmd ├── ml.Rmd ├── regression.Rmd ├── spatial.Rmd ├── time-series.Rmd └── unsupervised.Rmd ├── stat-software-categories.md ├── statistical-software-peer-review.Rproj ├── statistical-software.bib ├── statsoft.bib ├── style.css └── templates ├── request.md └── review.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/README.md -------------------------------------------------------------------------------- /_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/_common.R -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/_output.yml -------------------------------------------------------------------------------- /_quarto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/_quarto.yml -------------------------------------------------------------------------------- /_variables.yml: -------------------------------------------------------------------------------- 1 | version: 0.2.0 2 | -------------------------------------------------------------------------------- /appendix.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/appendix.Rmd -------------------------------------------------------------------------------- /badges/stats-bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-bronze.png -------------------------------------------------------------------------------- /badges/stats-bronze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-bronze.svg -------------------------------------------------------------------------------- /badges/stats-gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-gold.png -------------------------------------------------------------------------------- /badges/stats-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-gold.svg -------------------------------------------------------------------------------- /badges/stats-silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-silver.png -------------------------------------------------------------------------------- /badges/stats-silver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/badges/stats-silver.svg -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/book.bib -------------------------------------------------------------------------------- /custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/custom.scss -------------------------------------------------------------------------------- /favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/favicon.ico -------------------------------------------------------------------------------- /favicon/icon_short_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/icon_short_color.png -------------------------------------------------------------------------------- /favicon/icon_short_color_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/favicon/icon_short_color_small.png -------------------------------------------------------------------------------- /ghpagescname: -------------------------------------------------------------------------------- 1 | stats-devguide.ropensci.org 2 | -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/index.Rmd -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/makefile -------------------------------------------------------------------------------- /matomo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/matomo.html -------------------------------------------------------------------------------- /overview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/overview.Rmd -------------------------------------------------------------------------------- /pkgdev.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/pkgdev.Rmd -------------------------------------------------------------------------------- /pkgreview.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/pkgreview.Rmd -------------------------------------------------------------------------------- /pkgsubmission.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/pkgsubmission.Rmd -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- 1 | \usepackage{booktabs} 2 | -------------------------------------------------------------------------------- /process.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/process.Rmd -------------------------------------------------------------------------------- /reading.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/reading.Rmd -------------------------------------------------------------------------------- /scripts/chunknames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/chunknames -------------------------------------------------------------------------------- /scripts/cloc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/cloc.R -------------------------------------------------------------------------------- /scripts/cran-cloc.Rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/cran-cloc.Rds -------------------------------------------------------------------------------- /scripts/getZoteroNotes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/getZoteroNotes.R -------------------------------------------------------------------------------- /scripts/joss-abstracts/categories.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/joss-abstracts/categories.Rmd -------------------------------------------------------------------------------- /scripts/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/makefile -------------------------------------------------------------------------------- /scripts/pkgcheck-ex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/pkgcheck-ex.Rmd -------------------------------------------------------------------------------- /scripts/pkgcheck-ex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/scripts/pkgcheck-ex.md -------------------------------------------------------------------------------- /standards.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards.Rmd -------------------------------------------------------------------------------- /standards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/README.md -------------------------------------------------------------------------------- /standards/bayesian.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/bayesian.Rmd -------------------------------------------------------------------------------- /standards/distributions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/distributions.Rmd -------------------------------------------------------------------------------- /standards/eda.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/eda.Rmd -------------------------------------------------------------------------------- /standards/general.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/general.Rmd -------------------------------------------------------------------------------- /standards/ml.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/ml.Rmd -------------------------------------------------------------------------------- /standards/regression.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/regression.Rmd -------------------------------------------------------------------------------- /standards/spatial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/spatial.Rmd -------------------------------------------------------------------------------- /standards/time-series.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/time-series.Rmd -------------------------------------------------------------------------------- /standards/unsupervised.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/standards/unsupervised.Rmd -------------------------------------------------------------------------------- /stat-software-categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/stat-software-categories.md -------------------------------------------------------------------------------- /statistical-software-peer-review.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/statistical-software-peer-review.Rproj -------------------------------------------------------------------------------- /statistical-software.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/statistical-software.bib -------------------------------------------------------------------------------- /statsoft.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/statsoft.bib -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/style.css -------------------------------------------------------------------------------- /templates/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/templates/request.md -------------------------------------------------------------------------------- /templates/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/statistical-software-review-book/HEAD/templates/review.md --------------------------------------------------------------------------------