The estimate_infections()
function encodes a range of
different model options. In this vignette we apply some of these to the
example data provided with the EpiNow2 package, highlighting
differences in inference results and run times. It is not meant as a
comprehensive exploration of all the functionality in the package, but
intended to give users a flavour of the kind of model options that exist
for reproduction number estimation and forecasting within the package,
and the differences in computational speed between them. For
mathematical detail on the model please consult the model definition vignette, and for a
more general description of the use of the function, the estimate_infections
workflow vignette.
We first load the EpiNow2 package and also the rstan package that we will use later to show the differences in run times between different model options.
library("EpiNow2")
#>
#> Attaching package: 'EpiNow2'
#> The following object is masked from 'package:stats':
#>
#> Gamma
library("rstan")
#> Loading required package: StanHeaders
#>
#> rstan version 2.32.6 (Stan version 2.32.2)
#> For execution on a local, multicore CPU with excess RAM we recommend calling
#> options(mc.cores = parallel::detectCores()).
#> To avoid recompilation of unchanged Stan programs, we recommend calling
#> rstan_options(auto_write = TRUE)
#> For within-chain threading using `reduce_sum()` or `map_rect()` Stan functions,
#> change `threads_per_chain` option:
#> rstan_options(threads_per_chain = 1)
In this examples we set the number of cores to use to 4 but the optimal value here will depend on the computing resources available.
We will use an example data set that is included in the package, representing an outbreak of COVID-19 with an initial rapid increase followed by decreasing incidence.
library("ggplot2")
reported_cases <- example_confirmed[1:60]
ggplot(reported_cases, aes(x = date, y = confirm)) +
geom_col() +
theme_minimal() +
xlab("Date") +
ylab("Cases")
Before running the model we need to decide on some parameter values, in particular any delays, the generation time, and a prior on the initial reproduction number.
Delays reflect the time that passes between infection and reporting, if these exist. In this example, we assume two delays, an incubation period (i.e. delay from infection to symptom onset) and a reporting delay (i.e. the delay from symptom onset to being recorded as a symptomatic case). These delays are usually not the same for everyone and are instead characterised by a distribution. For the incubation period we use an example from the literature that is included in the package.
example_incubation_period
#> - lognormal distribution (max: 14):
#> meanlog:
#> - normal distribution:
#> mean:
#> 1.6
#> sd:
#> 0.064
#> sdlog:
#> - normal distribution:
#> mean:
#> 0.42
#> sd:
#> 0.069
For the reporting delay, we use a lognormal distribution with mean of
2 days and standard deviation of 1 day. Note that the mean and standard
deviation must be converted to the log scale, which can be done using
the convert_log_logmean()
function.
reporting_delay <- LogNormal(mean = 2, sd = 1, max = 10)
reporting_delay
#> - lognormal distribution (max: 10):
#> meanlog:
#> 0.58
#> sdlog:
#> 0.47
EpiNow2 provides a feature that allows us to combine these delays into one by summing them up
delay <- example_incubation_period + reporting_delay
delay
#> Composite distribution:
#> - lognormal distribution (max: 14):
#> meanlog:
#> - normal distribution:
#> mean:
#> 1.6
#> sd:
#> 0.064
#> sdlog:
#> - normal distribution:
#> mean:
#> 0.42
#> sd:
#> 0.069
#> - lognormal distribution (max: 10):
#> meanlog:
#> 0.58
#> sdlog:
#> 0.47
If we want to estimate the reproduction number we need to provide a distribution of generation times. Here again we use an example from the literature that is included with the package.
Lastly we need to choose a prior for the initial value of the reproduction number. This is assumed by the model to be normally distributed and we can set the mean and the standard deviation. We decide to set the mean to 2 and the standard deviation to 1.
We are now ready to run the model and will in the following show a number of possible options for doing so.
By default the model uses a renewal equation for infections and a Gaussian Process prior for the reproduction number. Putting all the data and parameters together and tweaking the Gaussian Process to have a shorter length scale prior than the default we run.
def <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(prior = rt_prior)
)
# summarise results
summary(def)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2248 (1257 -- 4197)
#> 2: Expected change in daily reports Likely decreasing
#> 3: Effective reproduction no. 0.89 (0.7 -- 1.1)
#> 4: Rate of growth -0.029 (-0.1 -- 0.05)
#> 5: Doubling/halving time (days) -24 (14 -- -6.9)
# elapsed time (in seconds)
get_elapsed_time(def$fit)
#> warmup sample
#> chain:1 39.295 14.837
#> chain:2 30.967 17.867
#> chain:3 19.880 20.187
#> chain:4 30.845 17.029
# summary plot
plot(def)
To speed up the calculation of the Gaussian Process we could decrease its accuracy, e.g. decrease the proportion of time points to use as basis functions from the default of 0.2 to 0.1.
agp <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(prior = rt_prior),
gp = gp_opts(basis_prop = 0.1)
)
# summarise results
summary(agp)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2237 (1219 -- 4117)
#> 2: Expected change in daily reports Likely decreasing
#> 3: Effective reproduction no. 0.9 (0.7 -- 1.1)
#> 4: Rate of growth -0.027 (-0.1 -- 0.05)
#> 5: Doubling/halving time (days) -25 (14 -- -6.7)
# elapsed time (in seconds)
get_elapsed_time(agp$fit)
#> warmup sample
#> chain:1 29.162 17.576
#> chain:2 25.503 16.575
#> chain:3 30.866 20.561
#> chain:4 16.315 19.859
# summary plot
plot(agp)
We might want to adjust for future susceptible depletion. Here, we do so by setting the population to 1000000 and projecting the reproduction number from the latest estimate (rather than the default, which fixes the reproduction number to an earlier time point based on the given reporting delays). Note that this only affects the forecasts and is done using a crude adjustment (see the model definition).
dep <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(
prior = rt_prior,
pop = 1000000, future = "latest"
)
)
#> Warning: There were 1 divergent transitions after warmup. See
#> https://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
#> to find out why this is a problem and how to eliminate them.
#> Warning: Examine the pairs() plot to diagnose sampling problems
# summarise results
summary(dep)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2281 (1272 -- 4202)
#> 2: Expected change in daily reports Likely decreasing
#> 3: Effective reproduction no. 0.9 (0.7 -- 1.2)
#> 4: Rate of growth -0.027 (-0.099 -- 0.053)
#> 5: Doubling/halving time (days) -26 (13 -- -7)
# elapsed time (in seconds)
get_elapsed_time(dep$fit)
#> warmup sample
#> chain:1 38.446 17.392
#> chain:2 35.284 25.287
#> chain:3 37.985 14.862
#> chain:4 19.169 21.754
# summary plot
plot(dep)
We might further want to adjust for right-truncation of recent data estimated using the estimate_truncation model. Here, instead of doing so we assume that we know about truncation with mean of 1/2 day, sd 1/2 day, following a lognormal distribution and with a maximum of three days.
trunc_dist <- LogNormal(
mean = Normal(0.5, 0.1),
sd = Normal(0.5, 0.1),
max = 3
)
#> Warning: ! Uncertain lognormal distribution specified in terms of parameters that are
#> not the "natural" parameters of the distribution meanlog and sdlog.
#> ℹ Converting using a crude and very approximate method that is likely to
#> produce biased results.
#> ℹ If possible it is preferable to specify the distribution directly in terms of
#> the natural parameters.
trunc_dist
#> - lognormal distribution (max: 3):
#> meanlog:
#> - normal distribution:
#> mean:
#> -1
#> sd:
#> 0.14
#> sdlog:
#> - normal distribution:
#> mean:
#> 0.83
#> sd:
#> 0.13
We can then use this in the esimtate_infections()
function using the truncation
option.
trunc <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
truncation = trunc_opts(trunc_dist),
rt = rt_opts(prior = rt_prior)
)
#> Error in vapply(delays[parametric], attr, "weight_prior", FUN.VALUE = logical(1)): values must be length 1,
#> but FUN(X[[3]]) result is length 0
# summarise results
summary(trunc)
#> Error in object[[i]]: object of type 'builtin' is not subsettable
# elapsed time (in seconds)
get_elapsed_time(trunc$fit)
#> Error in (function (cond) : error in evaluating the argument 'object' in selecting a method for function 'get_elapsed_time': object of type 'builtin' is not subsettable
# summary plot
plot(trunc)
Instead of keeping the reproduction number fixed from a certain time point we might want to extrapolate the Gaussian Process into the future. This will lead to wider uncertainty, and the researcher should check whether this or fixing the reproduction number from an earlier is desirable.
project_rt <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(
prior = rt_prior, future = "project"
)
)
#> Warning: There were 1 divergent transitions after warmup. See
#> https://mc-stan.org/misc/warnings.html#divergent-transitions-after-warmup
#> to find out why this is a problem and how to eliminate them.
#> Warning: Examine the pairs() plot to diagnose sampling problems
# summarise results
summary(project_rt)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2259 (1269 -- 4270)
#> 2: Expected change in daily reports Likely decreasing
#> 3: Effective reproduction no. 0.9 (0.7 -- 1.2)
#> 4: Rate of growth -0.028 (-0.1 -- 0.053)
#> 5: Doubling/halving time (days) -25 (13 -- -6.9)
# elapsed time (in seconds)
get_elapsed_time(project_rt$fit)
#> warmup sample
#> chain:1 38.457 21.569
#> chain:2 37.331 31.316
#> chain:3 41.696 20.026
#> chain:4 36.001 29.542
# summary plot
plot(project_rt)
We might want to estimate a fixed reproduction number, i.e. assume that it does not change.
fixed <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
gp = NULL
)
# summarise results
summary(fixed)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 16388 (9713 -- 29178)
#> 2: Expected change in daily reports Increasing
#> 3: Effective reproduction no. 1.2 (1.1 -- 1.3)
#> 4: Rate of growth 0.049 (0.035 -- 0.064)
#> 5: Doubling/halving time (days) 14 (11 -- 20)
# elapsed time (in seconds)
get_elapsed_time(fixed$fit)
#> warmup sample
#> chain:1 2.980 1.299
#> chain:2 2.341 1.762
#> chain:3 1.905 1.488
#> chain:4 2.371 1.124
# summary plot
plot(fixed)
Instead of assuming the reproduction number varies freely or is
fixed, we can assume that it is fixed but with breakpoints. This can be
done by adding a breakpoint
column to the reported case
data set. e.g. if we think that the reproduction number was constant but
would like to allow it to change on the 16th of March 2020 we would
define a new case data set using
bp_cases <- data.table::copy(reported_cases)
bp_cases <- bp_cases[,
breakpoint := ifelse(date == as.Date("2020-03-16"), 1, 0)
]
We then use this instead of reported_cases
in the
estimate_infections()
function:
bkp <- estimate_infections(bp_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(prior = rt_prior),
gp = NULL
)
# summarise results
summary(bkp)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2332 (1913 -- 2873)
#> 2: Expected change in daily reports Decreasing
#> 3: Effective reproduction no. 0.89 (0.86 -- 0.92)
#> 4: Rate of growth -0.027 (-0.035 -- -0.02)
#> 5: Doubling/halving time (days) -25 (-35 -- -20)
# elapsed time (in seconds)
get_elapsed_time(bkp$fit)
#> warmup sample
#> chain:1 4.038 4.143
#> chain:2 4.717 4.175
#> chain:3 3.792 4.339
#> chain:4 4.155 4.375
# summary plot
plot(bkp)
Instead of a smooth Gaussian Process we might want the reproduction
number to change step-wise, e.g. every week. This can be achieved using
the rw
option which defines the length of the time step in
a random walk that the reproduction number is assumed to follow.
rw <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = rt_opts(prior = rt_prior, rw = 7),
gp = NULL
)
# summarise results
summary(rw)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2105 (1056 -- 4290)
#> 2: Expected change in daily reports Likely decreasing
#> 3: Effective reproduction no. 0.87 (0.63 -- 1.2)
#> 4: Rate of growth -0.038 (-0.11 -- 0.043)
#> 5: Doubling/halving time (days) -18 (16 -- -6.3)
# elapsed time (in seconds)
get_elapsed_time(rw$fit)
#> warmup sample
#> chain:1 8.861 11.035
#> chain:2 10.882 14.697
#> chain:3 10.258 14.744
#> chain:4 9.483 11.982
# summary plot
plot(rw)
Whilst EpiNow2 allows the user to specify delays, it can also run directly on the data as does e.g. the EpiEstim package.
no_delay <- estimate_infections(
reported_cases,
generation_time = gt_opts(example_generation_time)
)
# summarise results
summary(no_delay)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2788 (2410 -- 3253)
#> 2: Expected change in daily reports Decreasing
#> 3: Effective reproduction no. 0.89 (0.81 -- 0.97)
#> 4: Rate of growth -0.031 (-0.06 -- -0.00082)
#> 5: Doubling/halving time (days) -22 (-850 -- -11)
# elapsed time (in seconds)
get_elapsed_time(no_delay$fit)
#> warmup sample
#> chain:1 49.555 43.752
#> chain:2 47.479 30.349
#> chain:3 45.951 42.126
#> chain:4 36.484 33.659
# summary plot
plot(no_delay)
The package also includes a non-parametric infection model. This runs much faster but does not use the renewal equation to generate infections. Because of this none of the options defining the behaviour of the reproduction number are available in this case, limiting user choice and model generality. It also means that the model is questionable for forecasting, which is why were here set the predictive horizon to 0.
non_parametric <- estimate_infections(reported_cases,
generation_time = gt_opts(example_generation_time),
delays = delay_opts(delay),
rt = NULL,
backcalc = backcalc_opts(),
horizon = 0
)
# summarise results
summary(non_parametric)
#> measure estimate
#> <char> <char>
#> 1: New infections per day 2730 (2691 -- 2771)
#> 2: Expected change in daily reports Decreasing
#> 3: Effective reproduction no. 0.92 (0.86 -- 0.96)
#> 4: Rate of growth -0.024 (-0.025 -- -0.022)
#> 5: Doubling/halving time (days) -29 (-31 -- -28)
# elapsed time (in seconds)
get_elapsed_time(non_parametric$fit)
#> warmup sample
#> chain:1 4.566 0.667
#> chain:2 4.359 0.797
#> chain:3 4.592 0.604
#> chain:4 4.892 0.565
# summary plot
plot(non_parametric)