Open dajmcdon opened 2 years ago
On point 2., it may be useful to look at Jeffrey Shaman's group's work that uses the ensemble adjustment Kalman filter (EAKF), as well as this paper where they compare alternative filtering techniques. Alternatively, maybe look at pyPM, Dean Karlen's flexible compartmental modeling code framework (although I believe this is MCMC).
I've been toying with the following SIR-type model in my head, and I want to write it down. The goal is to encapsulate as much of the standard epidemic structure in some time varying parameters. Let
I_t
be infections at timet
andc_t
be new reported cases at timet
. We do this in discrete time.Suppose that the infection model is:
In the standard SIR, we usually have
I(t)' = bS(t)I(t)-gI(t)
, which yieldsr(t) = bS(t)-g
. So we can think ofb_t
above as being "like"(1+r(t))
. So we're saying thatlog(r(t))
varies slowly. The specification with the time varyingv
is very similar to putting 2nd-order AR behavior onlog(b)
. Then we model cases as linear in past infections:Here, I is some vector of past infections (say last 21) and P is a weight vector. So this part looks much like Maria's nowcasting model.