-
Notifications
You must be signed in to change notification settings - Fork 0
/
05-model-versions.Rmd
25 lines (19 loc) · 1.19 KB
/
05-model-versions.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DKRGVPD7GE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DKRGVPD7GE');
</script>
# Model versions
```{r echo=FALSE, message=FALSE, warning=FALSE}
tbl <- data.frame(
Version = c("v0.1", "v1.0", "v2.0", "v3.0"),
Description = c("**Current:** Beta version of the model to establish mechanisms and links to data. Basic SIR dynamics with mobility, vaccination, environmental transmission, and an observation process.",
"**Future:** First implementation in LASER. Model definition is the same. Improvements to data sources and model adjustments to new data.",
"**Future:** Maximizing metapopulation approach. District level data and improvements to model fitting and hierarchical likelihoods. Likely in LASER, but could still have an R implementation at this point.",
"**Future:** Agent-based component with better immune dynamics.")
)
knitr::kable(tbl, caption = "Current and future planned model versions with brief descriptions.")
```