- "markdown": "# Exercise Requirements {.unnumbered}\n\n## R Packages\n\nIf you use `{renv}` to manage package dependencies in your projects, you can visit the [GitHub repository](https://github.com/arnold-c/SISMID-Module-02_2025) for this project and download the ***renv.lock***, ***.Rprofile***, and ***renv/activate.R*** files, before running the command `renv::restore()`.\nAlternatively, if you already use GitHub, you could clone the project and just run `renv::restore()`.\n\nIf you would prefer to just install the packages manually to avoid the complications associated with using `{renv}`, you can install the packages printed below.\n\n\n::: {.cell}\n\n```{.r .cell-code}\ninstall.packages(c(\n \"tidyverse\",\n \"deSolve\",\n \"diagram\",\n \"gt\",\n \"ggtext\",\n \"here\",\n \"rio\",\n))\n```\n:::\n\n\n## Data Files\n\nTo complete the exercises, some data files are required.\nThe exercises should load the datafiles via urls, but if you would prefer to download them to your own machine, your are welcome to do so.\nTo download the files, go to the [GitHub repository](https://github.com/arnold-c/SISMID-Module-02_2023) and download the files in the `data/` folder of your repository.\nYou should then uncomment the lines of code that run `... <- rio::import(here::here(\"data\", ...))`, and comment out the lines that include the URLs.\n",
0 commit comments