├── .github ├── .gitignore └── workflows │ └── deploy_bookdown.yml ├── .gitignore ├── 01_design-phase.Rmd ├── 02_analysis-phase.Rmd ├── 03_publication-phase.Rmd ├── LICENSE.md ├── README.md ├── _bookdown.yml ├── images ├── phase-1_model-complexity.png ├── phase-1_power-calculation.png ├── phase-1_quality-of-question.png ├── phase-1_types-of-error.png ├── phase-1_validity-precision.png ├── phase-2_19-vs-21-century.png └── phase-2_anscombes-quartet.png ├── index.Rmd ├── scientific-method-handbook.Rproj └── tables └── phase-1_pico.csv /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/deploy_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/.github/workflows/deploy_bookdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/.gitignore -------------------------------------------------------------------------------- /01_design-phase.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/01_design-phase.Rmd -------------------------------------------------------------------------------- /02_analysis-phase.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/02_analysis-phase.Rmd -------------------------------------------------------------------------------- /03_publication-phase.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/03_publication-phase.Rmd -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/README.md -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/_bookdown.yml -------------------------------------------------------------------------------- /images/phase-1_model-complexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-1_model-complexity.png -------------------------------------------------------------------------------- /images/phase-1_power-calculation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-1_power-calculation.png -------------------------------------------------------------------------------- /images/phase-1_quality-of-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-1_quality-of-question.png -------------------------------------------------------------------------------- /images/phase-1_types-of-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-1_types-of-error.png -------------------------------------------------------------------------------- /images/phase-1_validity-precision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-1_validity-precision.png -------------------------------------------------------------------------------- /images/phase-2_19-vs-21-century.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-2_19-vs-21-century.png -------------------------------------------------------------------------------- /images/phase-2_anscombes-quartet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/images/phase-2_anscombes-quartet.png -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/index.Rmd -------------------------------------------------------------------------------- /scientific-method-handbook.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/scientific-method-handbook.Rproj -------------------------------------------------------------------------------- /tables/phase-1_pico.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StanfordDataScience/best-practices/HEAD/tables/phase-1_pico.csv --------------------------------------------------------------------------------