You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: episodes/compare-interventions.Rmd
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -110,10 +110,12 @@ Learners should familiarise themselves with following concept dependencies befor
110
110
## Introduction
111
111
112
112
In this tutorial, we will compare intervention scenarios against each other. To quantify the effect of an intervention, we need to compare our intervention scenario to a counterfactual (baseline) scenario. The *counterfactual* here is the scenario in which nothing changes, often referred to as the "do-nothing" scenario. The counterfactual scenario may feature:
113
+
113
114
- No interventions at all, or
114
115
- Existing interventions in place (if we are investigating the potential impact of an additional intervention)
115
116
116
117
We must also define our *outcome of interest* to make comparisons between intervention and counterfactual scenarios. The outcome of interest can be:
118
+
117
119
- Direct model outputs (e.g., number of infections, hospitalizations)
118
120
- Epidemiological metrics (e.g., epidemic peak time, final outbreak size)
119
121
- Health impact measures (e.g., Quality-Adjusted Life Years [QALYs] or Disability-Adjusted Life Years [DALYs])
Copy file name to clipboardExpand all lines: episodes/contact-matrices.Rmd
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,7 @@ library(socialmixr)
51
51
## The contact matrix
52
52
53
53
The basic contact matrix represents the amount of contact or mixing within and between different subgroups of a population. The subgroups are often age categories but can also be:
54
+
54
55
- Geographic areas (e.g., different regions or countries)
55
56
- Risk groups (e.g., high/low risk occupations)
56
57
- Social settings (e.g., household, workplace, school)
@@ -69,6 +70,7 @@ In this example, we would use this to represent that children meet, on average,
69
70
70
71
### A Note on Notation
71
72
For a contact matrix with rows $i$ and columns $j$:
73
+
72
74
- $C[i,j]$ represents the average number of contacts that individuals in group $i$ have with individuals in group $j$
73
75
- This average is calculated as the total number of contacts between groups $i$ and $j$, divided by the number of individuals in group $i$
74
76
::::::::::::::::::::::::::::::::::::::::::::::::
@@ -109,6 +111,7 @@ For the mathematical explanation see [the corresponding section in the socialmix
109
111
One of the arguments we gave the function `contact_matrix()` is `symmetric=TRUE`. This ensures that the total number of contacts from one group to another is equal to the total from the second group back to the first (see the `socialmixr`[vignette](https://cran.r-project.org/web/packages/socialmixr/vignettes/socialmixr.html) for more detail).
110
112
111
113
However, when contact matrices are estimated from surveys or other sources, the *reported* number of contacts may differ by age group for several reasons:
114
+
112
115
- Recall bias: Different age groups may have different abilities to remember and report contacts accurately
113
116
- Reporting bias: Some groups may systematically over- or under-report their contacts
114
117
- Sampling uncertainty: Limited sample sizes can lead to statistical variations
Copy file name to clipboardExpand all lines: episodes/disease-burden.Rmd
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,18 @@ exercises: 10 # exercise time in minutes
27
27
## Introduction
28
28
29
29
In previous tutorials we have used mathematical models to generate trajectories of infections, but we may also be interested in measures of disease burden. These measures could include:
30
+
30
31
- Health outcomes in the population (e.g., mild vs. severe infections)
31
32
- Healthcare system impacts (e.g., hospitalizations, ICU admissions)
In this tutorial, we learned how to estimate hospitalizations based on daily new infections from a transmission model. This approach can be extended to other measures of disease burden, such as:
Copy file name to clipboardExpand all lines: episodes/model-choices.Rmd
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ Model structures differ depending on the scale and nature of the outbreak. When
72
72
## What is the outcome of interest?
73
73
74
74
The outcome of interest is typically a measurable quantity derived from the mathematical model. This could include:
75
+
75
76
- The number of infections over time
76
77
- The peak number of hospitalizations
77
78
- The total number of severe disease cases
@@ -100,6 +101,7 @@ There can be subtle differences in model structures for the same infection or ou
100
101
## Will any interventions be modelled?
101
102
102
103
Finally, interventions such as vaccination, social distancing, or treatment programs may be of interest. Different models have varying capabilities to incorporate interventions:
104
+
103
105
- Some models can simulate continuous interventions (e.g., ongoing vaccination programs)
104
106
- Others handle discrete interventions (e.g., one-time school closures)
105
107
- Some models may not include intervention capabilities at all
0 commit comments