Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions episodes/severity-static.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,9 @@ This episode requires you to be familiar with:

Install packages if their are not already installed

```{r, eval = FALSE}
# if {pak} is not installed, run: install.packages("pak")
pak::pak("cfr")
pak::pak("epiparameter")
pak::pak("tidyverse")
pak::pak("outbreaks")
```r
if (!base::require("pak")) install.packages("pak")
pak::pak(c("cfr", "epiparameter", "tidyverse", "outbreaks"))
```

If you have any error message,
Expand Down
10 changes: 3 additions & 7 deletions episodes/superspreading-estimate.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,9 @@ Learners should familiarise themselves with following concept dependencies befor

Install packages if their are not already installed

```{r, eval = FALSE}
# if {pak} is not installed, run: install.packages("pak")
pak::pak("epicontacts")
pak::pak("fitdistrplus")
pak::pak("superspreading")
pak::pak("outbreaks")
pak::pak("tidyverse")
```r
if (!base::require("pak")) install.packages("pak")
pak::pak(c("epicontacts", "fitdistrplus", "superspreading", "outbreaks", "tidyverse"))
```

If you have any error message,
Expand Down
Loading