Quarto is a system for generating reports from code
By using Quarto, we can ensure our results are reproducible and derived directly from the data (and code)
report.qmd) is due 2025-07-30 11:59PM
Please see the rubric in the final report instructions to understand how the paper will be graded
You will also evaluate each other’s final report using the rubric
Example Question: “Which of the following best describes the introduction?””
.gitignore.gitignore fileIf there are any files you don’t want git to track, you can ignore them by listing them in a special file called .gitignore.
It is usually a good idea to ignore output files. We only want to track code (in other words, the analysis itself)
.gitignore:
gapminder-report.docxgapminder-report.htmlgapminder-report_files (files needed for HTML output)*.docxYou can adjust the size of the figure with chunk options fig.height and fig.width (units in inches)
For example:
#| fig.height: 6
#| fig.width: 6
theme_gray() should be fine for the final paper{{< pagebreak >}}