Skip to content

Commit

Permalink
remove library messages + replace head
Browse files Browse the repository at this point in the history
  • Loading branch information
avallecam committed Mar 30, 2024
1 parent 8680354 commit 938513d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions episodes/quantify-transmissibility.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ This tutorial illustrates the usage of `epinow()` to estimate the time-varying r
To illustrate the functions of `EpiNow2` we will use outbreak data of the start of the COVID-19 pandemic from the United Kingdom. The data are available in the R package `{incidence2}`.

```{r}
head(incidence2::covidregionaldataUK)
dplyr::as_tibble(incidence2::covidregionaldataUK)
```

To use the data, we must format the data to have two columns:
Expand All @@ -106,7 +106,7 @@ To use the data, we must format the data to have two columns:

Let's use `{dplyr}` for this:

```{r}
```{r, warning = FALSE, message = FALSE}
library(dplyr)
cases <- incidence2::covidregionaldataUK %>%
Expand Down

0 comments on commit 938513d

Please sign in to comment.