Summary and Schedule
This is an Epiverse-TRACE tutorial built with The Carpentries Workbench.
Setup Instructions | Download files required for the lesson | |
Duration: 00h 00m | 1. Contact matrices |
What is a contact matrix? How are contact matrices estimated? How are contact matrices used in epidemiological analysis? |
Duration: 00h 50m | 2. Simulating transmission |
How do I simulate disease spread using a mathematical model? What inputs are needed for a model simulation? How do I account for uncertainty? |
Duration: 02h 05m | 3. Choosing an appropriate model | How do I choose a mathematical model that’s appropriate to complete my analytical task? |
Duration: 02h 35m | 4. Modelling interventions | How do I investigate the effect of interventions on disease trajectories? |
Duration: 03h 50m | 5. Comparing public health outcomes of interventions | How can I quantify the effect of an intervention? |
Duration: 05h 05m | 6. Comparing vaccination strategies |
What are the direct and indirect effects of vaccination? What are the benefits of targeted vaccination programs? What happens if we combine vaccination and NPIs? |
Duration: 06h 15m | 7. Modelling disease burden | How can we model disease burden and healthcare demand? |
Duration: 07h 05m | Finish |
The actual schedule may vary slightly depending on the topics and exercises chosen by the instructor.
Motivation
Outbreaks of infectious diseases can appear as a result of different pathogens, and in different contexts, but they typically lead to similar public health questions, from understanding patterns of transmission and severity to examining the effect of control measures (Cori et al. 2017). We can relate each of these public health questions to a series of outbreak data analysis tasks. The more efficiently and reliably we can perform these tasks, the faster and more accurately we can answer the underlying questions.
Epiverse-TRACE aims to provide a software ecosystem for outbreak analytics with integrated, generalisable and scalable community-driven software. We support the development of new R packages, help link together existing tools to make them more user-friendly, and contribute to a community of practice, spanning field epidemiologists, data scientists, lab researchers, health agency analysts, software engineers and more.
Epiverse-TRACE tutorials
Our tutorials are built around an outbreak analysis pipeline split into three stages: Early tasks, Middle tasks and Late tasks. The outputs of tasks completed in earlier stages commonly feed into the tasks required for later ones.
Each task has its tutorial website and each tutorial website consists of a set of episodes covering different topics.
Early task tutorials ➠ | Middle task tutorials ➠ | Late task tutorials ➠ |
---|---|---|
Read and clean case data, and make linelist | Real-time analysis and forecasting | Scenario modelling |
Read, clean and validate case data, convert linelist data to incidence for visualization. | Access delay distributions and estimate transmission metrics, forecast cases, estimate severity and superspreading. | Simulate disease spread and investigate interventions. |
Each episode contains:
- Overview: describes what questions will be answered and the objectives of the episode.
- Prerequisites: describes what episodes/packages ideally need to be covered before the current episode.
- Example R code: example R code so you can work through the episodes on your own computer.
- Challenges: challenges that can be completed to test your understanding.
- Explainers: boxes to enhance your understanding of mathematical and modelling concepts.
Also check out the glossary for any terms you may be unfamiliar with.
Epiverse-TRACE R packages
Our strategy is to gradually incorporate specialised R packages into a traditional analysis pipeline. These packages should fill the gaps in these epidemiology-specific tasks in response to outbreaks.

Prerequisite
This content assumes intermediate R knowledge. This tutorials are for you if:
- You can read data into R, transform and reshape data, and make a wide variety of graphs
- You are familiar with functions from dplyr, tidyr, and ggplot2
- You can use the magrittr pipe
%>%
and/or native pipe|>
.
We expect learners to have some exposure to basic Statistical, Mathematical and Epidemic theory concepts, but NOT intermediate or expert familiarity with modeling.
Software Setup
Follow these two steps:
1. Install or upgrade R and RStudio
R and RStudio are two separate pieces of software:
- R is a programming language and software used to run code written in R.
- RStudio is an integrated development environment (IDE) that makes using R easier. We recommend to use RStudio to interact with R.
To install R and RStudio, follow these instructions https://posit.co/download/rstudio-desktop/.
Already installed?
Hold on: This is a great time to make sure your R installation is current.
This tutorial requires R version 4.0.0 or later.
To check if your R version is up to date:
In RStudio your R version will be printed in the console window. Or run
sessionInfo()
there.-
To update R, download and install the latest version from the R project website for your operating system.
After installing a new version, you will have to reinstall all your packages with the new version.
For Windows, the installr package can upgrade your R version and migrate your package library.
To update RStudio, open RStudio and click on
Help > Check for Updates
. If a new version is available follow the instructions on the screen.
Check for Updates regularly
While this may sound scary, it is far more common to run into issues due to using out-of-date versions of R or R packages. Keeping up with the latest versions of R, RStudio, and any packages you regularly use is a good practice.
2. Install the required R packages
Open RStudio and copy and paste the following code chunk into the console window, then press the Enter (Windows and Linux) or Return (MacOS) to execute the command:
R
if(!require("pak")) install.packages("pak")
new_packages <- c(
"socialmixr",
"finalsize",
"epiverse-trace/epidemics",
"epiparameter",
"scales",
"tidyverse"
)
pak::pkg_install(new_packages)
These installation steps could ask you
? Do you want to continue (Y/n)
write Y
and
press Enter.
If you get an error message when installing {epidemics}, try this alternative code:
R
if(!require("devtools")) install.packages("devtools")
devtools::install_github("epiverse-trace/epidemics")
What to do if an Error persist?
If the error message keyword include an string like
Personal access token (PAT)
, you may need to set
up your GitHub token.
First, install these R packages:
R
if(!require("pak")) install.packages("pak")
new <- c("gh",
"gitcreds",
"usethis")
pak::pak(new)
Then, follow these three steps to set up your GitHub token (read this step-by-step guide):
R
# Generate a token
usethis::create_github_token()
# Configure your token
gitcreds::gitcreds_set()
# Get a situational report
usethis::git_sitrep()
Try again installing {epidemics}:
R
if(!require("devtools")) install.packages("devtools")
devtools::install_github("epiverse-trace/epidemics")
If the error persist, contact us!
You should update all of the packages required for the tutorial, even if you installed them relatively recently. New versions bring improvements and important bug fixes.
When the installation has finished, you can try to load the packages by pasting the following code into the console:
R
library(socialmixr)
library(finalsize)
library(epidemics)
library(epiparameter)
library(scales)
library(tidyverse)
If you do NOT see an error like
there is no package called ‘...’
you are good to go! If you
do, contact us!
Data sets
Your Questions
If you need any assistance installing the software or have any other questions about this tutorial, please send an email to andree.valle-campos@lshtm.ac.uk