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
These are current cases under the different scenarios:
336
350
337
351
```{code-cell} ipython3
338
-
plot_paths(i_paths, labels)
352
+
plot_paths(i_paths, labels, ylabel='current cases (fraction of the population)')
339
353
```
340
354
341
355
Here are cumulative cases, as a fraction of population:
342
356
343
357
```{code-cell} ipython3
344
-
plot_paths(c_paths, labels)
358
+
plot_paths(c_paths, labels, ylabel='cumulative cases (fraction of the population)')
345
359
```
346
360
361
+
Faster implementation of mitigation mainly delays the infection peak, with a
362
+
smaller effect on its height.
363
+
347
364
## Ending lockdown
348
365
349
366
The following replicates [additional results](https://drive.google.com/file/d/1uS7n-7zq5gfSgrL3S0HByExmpq4Bn3oh/view) by Andrew Atkeson on the timing of lifting lockdown.
@@ -383,7 +400,7 @@ for R0 in R0_paths:
383
400
Here is the number of active infections:
384
401
385
402
```{code-cell} ipython3
386
-
plot_paths(i_paths, labels)
403
+
plot_paths(i_paths, labels, ylabel='active infections (fraction of the population)')
387
404
```
388
405
389
406
What kind of mortality can we expect under these scenarios?
@@ -398,14 +415,14 @@ This is the cumulative number of deaths:
0 commit comments