STAT1003 – Statistical Techniques
Dr. Emi Tanaka
Australian National University
These slides are best viewed on a modern browser like Google Chrome on a desktop or laptop. Some interactive components may require some time to fully load.



What should have been submitted:

Literate programming is a programming paradigm introduced by Donald Knuth where it emphasises writing code for humans (i.e. intertwine code with natural language explanations).
Tidy data
Tools
… a statistical value chain is constructed by defining a number of meaningful intermediate data products, for which a chosen set of quality attributes are well described …
– van der Loo & de Jonge (2018)
A suggested folder structure for data projects:
project-root-folder/ # Root of the project folder
│
├── README.md # README file
│
├── data/ # Raw and derived data
│ ├── data-raw/ # Read-only files
│ ├── data-input/ # Extracted and coerced from raw data
│ ├── data-valid/ # Edit and imputed from input data
│ └── data-stats/ # Analysed results (R objects, .csv, etc.)
│
├── analysis/ # Scripts (not functions) to run analysis
│
├── figures/ # Figures (.png, .pdf, etc.)
│
├── misc/ # Misc
│
├── report.qmd # Report, paper, or thesis output
via Quarto Pubs
Happy writing and sharing 😊

STAT1003 – Statistical Techniques