Skip to content

Commit

Permalink
Restore package loading step
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisaloo committed Jan 29, 2024
1 parent 315b582 commit 4a71c23
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion episodes/model-choices.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ exercises: 20 # exercise time in minutes

---

```{r setup, echo = FALSE, message = FALSE, warning = FALSE}
library(epidemics)
library(dplyr)
library(ggplot2)
```

:::::::::::::::::::::::::::::::::::::: questions

- How do I choose a mathematical model that's appropriate to complete my analytical task?
Expand Down Expand Up @@ -372,7 +378,7 @@ output_samples <- Map(
}
)
output_samples <- bind_rows(output_samples) # requires the tidyverse package
output_samples <- bind_rows(output_samples) # requires the dplyr package
ggplot(
output_samples[output_samples$compartment == "infectious", ],
Expand Down

0 comments on commit 4a71c23

Please sign in to comment.