Replace this with a short description of your project and dataset.
- Source:
- Licence:
- Description:
| Name | GitHub username |
|---|---|
data/raw/ read-only raw data and licence documentation
data/processed/ cleaned data produced by code/02_clean.R
code/ numbered R scripts (01 download → 02 clean → 03 EDA → 04 analysis)
docs/ rendered Quarto website output (auto-generated, do not edit)
proposal.qmd W07 project proposal
report.qmd final analysis report
# 1. Install dependencies
renv::restore() # if using renv, otherwise install packages manually
# 2. Run the pipeline in order
source("code/01_download.R")
source("code/02_clean.R")
source("code/03_eda.R")
source("code/04_analysis.R")
# 3. Render the website
quarto::quarto_render()