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: README.Rmd
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,7 @@ This plot will plot each of the compartments of the model output. We can also pl
144
144
plot(r, var_select = c("E", "IMild"))
145
145
```
146
146
147
-
Or, you can specify one of `deaths`, `infections`, `hospital_occupancy`, `ICU_occupancy`, `hospital_demand` or `ICU_demand`, and plot these summary metrics that represent the combintion of a number of different compartment e.g:
147
+
Or, you can specify one of `deaths`, `infections`, `hospital_occupancy`, `ICU_occupancy`, `hospital_demand` or `ICU_demand`, and plot these summary metrics that represent the combination of a number of different compartment e.g:
148
148
149
149
```{r subset variables plot2}
150
150
plot(r, var_select = "deaths")
@@ -178,7 +178,7 @@ length of simulation and the timestep. For a full list of model inputs, please
178
178
see the function [documentation](https://mrc-ide.github.io/squire/reference/run_explicit_SEEIR_model.html)
179
179
180
180
For example, changing the initial R0 (default = 3), number of replicates (
181
-
default = 10), simualtion length (default = 365 days) and time step (default =
181
+
default = 10), simulation length (default = 365 days) and time step (default =
182
182
0.5 days), as well as setting the population and contact matrix manually:
183
183
184
184
```{r set params}
@@ -201,7 +201,7 @@ plot(r)
201
201
```
202
202
203
203
We can also change the R0 and contact matrix at set time points, to reflect
204
-
changing behaviour resulting from interventions. For example to set a 80%
204
+
changing behaviour resulting from interventions. For example to set an 80%
205
205
reduction in the contact matrix after 100 days :
206
206
207
207
```{r set contact matrix decrease}
@@ -356,7 +356,7 @@ three elements in `out` being the simulation outputs, the model and model parame
Any parameter that you could provide to `run_explicit_SEEIR_model` can be passed to `calibrate`. This
423
-
includes time varying arguments such as `contact_matrix_set`, `ICU_bed_capacity` and `hosp_bed_capacity`. To incorporate these into model fitting correctly, the date at which these change must be provided (similarly to how `date_R0_change` was provided above) using `date_ICU_bed_capacity_change`, `date_ICU_bed_capacity_change` and `date_hosp_bed_capacity_change`respecitvely. In addition, the user must provide a baseline value for these, i.e. the contact matrix and bed capacity at the beginning of the epidemic:
423
+
includes time varying arguments such as `contact_matrix_set`, `ICU_bed_capacity` and `hosp_bed_capacity`. To incorporate these into model fitting correctly, the date at which these change must be provided (similarly to how `date_R0_change` was provided above) using `date_ICU_bed_capacity_change`, `date_ICU_bed_capacity_change` and `date_hosp_bed_capacity_change`respectively. In addition, the user must provide a baseline value for these, i.e. the contact matrix and bed capacity at the beginning of the epidemic:
424
424
425
425
```{r particle with ints of all kinds, warning=FALSE, message=FALSE}
We can see above that the intervention introduced is nearly sufficient to prevent ICU demand (solid line red) from exceeding the supply, whereas in the unmitigated strategy this did occur.
512
512
513
-
We can also model changing interventions by changing the contact matrix over time as well as the availability of ICU and hospital beds. E.g. decreasing contacts by 75% in a week before relaxing it to 80% in 30 days time, while increasing hospital and ICU beds by 20% in 30 days time. (N.B. We can turn off the automatic scenario parameter labelling with `add_parms_to_scenarios = FALSE`):
513
+
We can also model changing interventions by changing the contact matrix over time as well as the availability of ICU and hospital beds. E.g. decreasing contacts by 75% in a week before relaxing it to 80% in 30 days time, while increasing hospital and ICU beds by 200% in 30 days time. (N.B. We can turn off the automatic scenario parameter labelling with `add_parms_to_scenarios = FALSE`):
0 commit comments