-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME.qmd
More file actions
223 lines (173 loc) · 7.22 KB
/
Copy pathREADME.qmd
File metadata and controls
223 lines (173 loc) · 7.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
---
format: gfm
---
<!-- README.md is generated from README.qmd. Please edit that file -->
```{r}
#| label: setup
#| echo: false
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# measles <img src="man/figures/logo.png" width="200px" alt="epiworld logo" align="right">
<!-- badges: start -->
```{=markdown}
[](https://github.com/EpiForeSITE)
[](https://CRAN.R-project.org/package=measles)
[](https://github.com/UofUEpiBio/measles/actions/workflows/r.yml)
[](https://cran.r-project.org/package=measles)
[](https://github.com/UofUEpiBio/measles/blob/master/LICENSE.md)
[](https://app.codecov.io/gh/UofUEpiBio/measles)
[](https://CRAN.R-project.org/package=measles)
```
<!-- badges: end -->
## Overview
The **measles** package is a specialized spinoff from [epiworldR](https://github.com/UofUEpiBio/epiworldR), focusing exclusively on measles epidemiological models. This package provides fast, agent-based models (ABMs) for studying measles transmission dynamics, vaccination strategies, and intervention policies.
Built on the powerful [epiworld](https://github.com/UofUEpiBio/epiworld) C++ library, these models leverage the speed and flexibility of epiworldR while providing specialized functionality for measles outbreak modeling.
You can learn more about the ongoing efforts to model measles outbreaks in ForeSITE's measles repository: <https://github.com/EpiForeSITE/measles>.
## Features
- **Fast simulation**: Leverages the high-performance C++ backend from epiworld
- **Specialized measles models**: Three distinct models tailored for different scenarios
- **Flexible interventions**: Support for vaccination, quarantine, isolation, and contact tracing
- **Population mixing**: Models can account for different population groups with varying contact patterns
- **Risk-based strategies**: Advanced models support risk-stratified quarantine policies
## Models Included
The package includes three measles-specific models:
1. **ModelMeaslesSchool**: A SLIHR (Susceptible-Latent-Infectious-Hospitalized-Recovered) model designed for school settings with isolation and quarantine policies.
2. **ModelMeaslesMixing**: A measles model with population mixing between different groups, including vaccination, quarantine, isolation, and contact tracing mechanisms.
3. **ModelMeaslesMixingRiskQuarantine**: An advanced mixing model with risk-based quarantine strategies that assign different quarantine durations based on exposure risk levels (high, medium, low).
## Installation
You can install the measles package from GitHub:
```r
# install.packages("devtools")
devtools::install_github("UofUEpiBio/measles")
```
Or from <a href="https://uofuepibio.r-universe.dev/"
target="_blank">R-universe</a> (recommended for the latest development
version):
``` r
install.packages(
'measles',
repos = c(
'https://uofuepibio.r-universe.dev',
'https://cloud.r-project.org'
)
)
```
## Quick Example
Here's a simple example using the ModelMeaslesSchool:
```{r}
#| label: example
library(measles)
# Create a measles model for a school with 500 students
model_school <- ModelMeaslesSchool(
n = 500,
contact_rate = 10 / .9 / 4, # R0 of 10
prevalence = 1,
prop_vaccinated = 0.70,
quarantine_period = -1,
vax_efficacy = 0.97
)
# Run the simulation
run_multiple(
model_school,
ndays = 200,
seed = 1912,
nsims = 400,
saver = make_saver("outbreak_size"),
nthreads = 4L
)
```
We can take a quick look at the last run using the `summary()` function:
```{r}
# View results
summary(model_school)
```
And we can extract the results (outbreak size in this case), using the function `run_multiple_get_results()`:
```{r}
#| label: plot-outcome
ans <- run_multiple_get_results(model_school)[[1]]
ans <- subset(ans, date == max(date))$outbreak_size
table(ans) |>
prop.table() |>
knitr::kable(
col.names = c("Outbreak Size", "Proportion of Simulations"),
digits = 3,
caption = "Distribution of outbreak sizes across 400 simulations"
)
```
## Example with Population Mixing
The mixing models allow you to simulate measles spread across different population groups:
```{r}
#| label: mixing-example
# Define three populations
e1 <- entity("Population 1", 3000, as_proportion = FALSE)
e2 <- entity("Population 2", 3000, as_proportion = FALSE)
e3 <- entity("Population 3", 3000, as_proportion = FALSE)
# Define contact matrix (expected contacts per group and time step)
contact_matrix <- matrix(c(
0.9, 0.05, 0.05,
0.1, 0.8, 0.1,
0.1, 0.2, 0.7
) * 15, byrow = TRUE, nrow = 3)
# Create the model
measles_model <- ModelMeaslesMixing(
n = 9000,
prevalence = 1 / 9000,
transmission_rate = 0.9,
vax_efficacy = 0.97,
prop_vaccinated = 0.95,
contact_matrix = contact_matrix,
quarantine_period = 14,
isolation_period = 10
)
# Add entities and run
measles_model |>
add_entity(e1) |>
add_entity(e2) |>
add_entity(e3)
run_multiple(
measles_model, ndays = 100, seed = 331,
nsims = 400,
saver = make_saver("outbreak_size"),
nthreads = 4L
)
summary(measles_model)
```
```{r}
#| label: outbreak-size-plot
ans <- run_multiple_get_results(measles_model)[[1]]
ans <- subset(ans, date == max(date))$outbreak_size |>
hist(
main = "Distribution of outbreak sizes across 400 simulations",
xlab = "Outbreak Size",
ylab = "Frequency",
breaks = 20
)
```
## Relationship to epiworldR
This package is a spinoff from epiworldR, which provides a comprehensive framework for agent-based epidemiological models. While epiworldR includes many different disease models (SIR, SEIR, SIS, etc.), the measles package focuses specifically on measles-related models with specialized features for:
- Measles-specific disease progression (incubation, prodromal, and rash periods)
- School-based outbreak scenarios
- Vaccination coverage and efficacy
- Quarantine and isolation policies
- Contact tracing strategies
- Risk-stratified interventions
For general-purpose epidemiological modeling or other disease types, please see the [epiworldR package](https://github.com/UofUEpiBio/epiworldR).
## Citation
If you use the measles package in your research, please cite both this package and epiworldR:
```r
citation("measles")
citation("epiworldR")
```
## Contributing
Contributions are welcome! Please see the [`measles` development guidelines](https://github.com/UofUEpiBio/measles/blob/main/DEVELOPMENT.md) for information on how to contribute.
## Acknowledgments
This project was made possible by cooperative agreement
CDC-RFA-FT-23-0069 from the CDC’s Center for Forecasting and Outbreak
Analytics. Its contents are solely the responsibility of the authors and
do not necessarily represent the official views of the Centers for
Disease Control and Prevention.