1 Prediction of * confirmed* cases for next days

Conditionally to:

  1. the observed data up to 2020-05-06 (only the official confirmed cases)
  2. assuming that these data reflect covid-19 epidemic evolution;
  3. the model detailed below;

Then below is the prediction of confirmed cases for last and next days updated at the time of this report (see above).

It also estimate the probability of observing the peak (defined as less increment in cases than the previous day). Prediction limits are at 95% of probability.

Day Inf. Expected Sup. Prob of Peak Obs.
72 2020-05-03 2592 2696 2800 0 1577
73 2020-05-04 1747 1833 1920 0 1091
74 2020-05-05 1260 1332 1405 0 1933
75 2020-05-06 2114 2208 2303 100 2810
76 2020-05-07 2944 3052 3163 100 NA
77 2020-05-08 3118 3271 3425 100 NA
78 2020-05-09 3287 3473 3659 100 NA
79 2020-05-10 3452 3660 3873 100 NA
80 2020-05-11 3603 3830 4061 100 NA
81 2020-05-12 3740 3983 4230 99 NA
82 2020-05-13 3864 4122 4385 98 NA
83 2020-05-14 3978 4247 4522 97 NA
84 2020-05-15 4081 4358 4639 95 NA
85 2020-05-16 4172 4458 4746 93 NA

1.3 Model for marginal counts cases

Let \(Y_t \in \mathcal{N}_0\) represents the number of cases at time (days) \(t\) where \(t=1\) is 2020-02-22.

The fitted model is an ARMA(1,1) on the Poisson mean:

\[ \begin{aligned} Y_t | \lambda_t & \sim Poisson(\lambda_t), \mbox{ for } t>0\\ \log(\lambda_t) & = \omega+\alpha\log(1+y_{t-1})+\beta\log(\lambda_{t-1}), \mbox{ for } t>1\\ \alpha,\beta,\omega & \sim N(0,10) (i.i.d.)\\ log(\lambda_1) & \sim N(-99,0.001) \end{aligned} \]

Interpetation of parameters:

  • \(\omega\) is the mean number (in log scale) of infected (actually the certified infected);
  • \(\alpha\) is the short term component (i.e. the proportion of new infected with respect to the day before);
  • \(\beta\) is the long term component that represents the evolution with respect to the mean (this is analogue to posing a GARCH on Poisson counts);

The non Bayesian and slighlty less complicated version of this model can be found here:

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3551626

Hamiltonian MC is used for obtaining the posterior:

1.5 Posterior Parameters

Posterior distributions of model paramters: mean and 95% credible intervals.

## Inference for Stan model: 4f41132ade8735d34bcdceb797f2be59.
## 4 chains, each with iter=10000; warmup=5000; thin=1; 
## post-warmup draws per chain=5000, total post-warmup draws=20000.
## 
##        mean se_mean   sd  2.5%   25%   50%   75% 97.5% n_eff Rhat
## omega  1.12       0 0.03  1.06  1.10  1.12  1.14  1.18  6084    1
## alpha  0.88       0 0.00  0.87  0.88  0.88  0.88  0.89  5351    1
## beta  -0.01       0 0.00 -0.02 -0.01 -0.01 -0.01  0.00  6267    1
## 
## Samples were drawn using NUTS(diag_e) at Thu May 14 12:41:12 2020.
## For each parameter, n_eff is a crude measure of effective sample size,
## and Rhat is the potential scale reduction factor on split chains (at 
## convergence, Rhat=1).