agg_to_daily {ern} | R Documentation |
Infer daily counts from aggregates
Description
Infer daily counts from aggregates
Usage
agg_to_daily(cl.data, dist.gi, prm.daily, silent = FALSE)
Arguments
cl.data |
Data frame. Must have variables:
|
dist.gi |
List. Parameters for the generation interval distribution in the same format as returned by |
prm.daily |
List. Parameters for daily report inference via MCMC. Elements include:
|
silent |
Logical. Flag to suppress all output messages, warnings, and progress bars. |
Value
A list containing a data frame with individual realizations of daily reported cases and the JAGS object.
Examples
# Importing data attached to the `ern` package
# and selecting the Omicron wave in Ontario, Canada.
# This is *weekly* incidence.
data(cl.data)
data = cl.data[cl.data$pt == 'on' &
cl.data$date > as.Date('2021-11-30') &
cl.data$date < as.Date('2021-12-31'),]
head(data)
dist.gi = ern::def_dist(
dist = "gamma",
mean = 6.84,
mean_sd = 0.7486,
shape = 2.39,
shape_sd = 0.3573,
max = 15
)
a = agg_to_daily(
cl.data = data,
dist.gi = dist.gi,
prm.daily = list(
method = "renewal",
popsize = 14e6,
# MCMC parameters.
# small values for computation speed for this example.
# Increase for better accuracy
burn = 100,
iter = 100,
chains = 2,
# - - - - -
prior_R0_shape = 2,
prior_R0_rate = 0.6,
prior_alpha_shape = 1,
prior_alpha_rate = 1
))
# This is a Bayesian inference, so we
# have a posterior distribution of
# daily incidences. Here we just plot
# one single draw:
df = a$df
df1 = df[df$id==1,]
plot(x = df1$t, y = df1$value, typ = 'o',
xlab = 'days', ylab = 'daily incidence',
main = 'Posterior daily incidence infered from weekly incidence')
# Extract of the parameters values from the first chain
a$jags.object[[1]][1:9,1:9]