Title: | Estimate Real-Time Case Counts and Time-Varying Epidemiological Parameters |
---|---|
Description: | Estimates the time-varying reproduction number, rate of spread, and doubling time using a range of open-source tools (Abbott et al. (2020) <doi:10.12688/wellcomeopenres.16006.1>), and current best practices (Gostic et al. (2020) <doi:10.1101/2020.06.18.20134858>). It aims to help users avoid some of the limitations of naive implementations in a framework that is informed by community feedback and is actively supported. |
Authors: | Sam Abbott [aut] , Joel Hellewell [aut] , Katharine Sherratt [aut], Katelyn Gostic [aut], Joe Hickson [aut], Hamada S. Badr [aut] , Michael DeWitt [aut] , James M. Azam [aut] , Robin Thompson [ctb], Sophie Meakin [ctb], James Munday [ctb], Nikos Bosse [ctb], Paul Mee [ctb], Peter Ellis [ctb], Pietro Monticone [ctb], Lloyd Chapman [ctb], Andrew Johnson [ctb], Kaitlyn Johnson [ctb] , EpiForecasts [aut], Sebastian Funk [aut, cre] |
Maintainer: | Sebastian Funk <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.6.1 |
Built: | 2024-10-31 21:32:20 UTC |
Source: | https://github.com/epiforecasts/EpiNow2 |
## S3 method for class 'dist_spec' e1 + e2
## S3 method for class 'dist_spec' e1 + e2
e1 |
The first delay distribution (of type <dist_spec>) to combine. |
e2 |
The second delay distribution (of type <dist_spec>) to combine. |
A delay distribution representing the sum of the two delays
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal( meanlog = 1.6, sdlog = 1, max = 20 ) dist1 + dist1 # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) dist1 + dist2
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal( meanlog = 1.6, sdlog = 1, max = 20 ) dist1 + dist1 # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) dist1 + dist2
Defines a list specifying the optional arguments for the back calculation
of cases. Only used if rt = NULL
.
backcalc_opts( prior = c("reports", "none", "infections"), prior_window = 14, rt_window = 1 )
backcalc_opts( prior = c("reports", "none", "infections"), prior_window = 14, rt_window = 1 )
prior |
A character string defaulting to "reports". Defines the prior
to use when deconvolving. Currently implemented options are to use smoothed
mean delay shifted reported cases ("reports"), to use the estimated
infections from the previous time step seeded for the first time step using
mean shifted reported cases ("infections"), or no prior ("none"). Using no
prior will result in poor real time performance. No prior and using
infections are only supported when a Gaussian process is present . If
observed data is not reliable then it a sensible first step is to explore
increasing the |
prior_window |
Integer, defaults to 14 days. The mean centred smoothing window to apply to mean shifted reports (used as a prior during back calculation). 7 days is minimum recommended settings as this smooths day of the week effects but depending on the quality of the data and the amount of information users wish to use as a prior (higher values equalling a less informative prior). |
rt_window |
Integer, defaults to 1. The size of the centred rolling average to use when estimating Rt. This must be odd so that the central estimate is included. |
A <backcalc_opts>
object of back calculation settings.
# default settings backcalc_opts()
# default settings backcalc_opts()
Fits an integer adjusted distribution to a subsampled bootstrap of data and then integrates the posterior samples into a single set of summary statistics. Can be used to generate a robust reporting delay that accounts for the fact the underlying delay likely varies over time or that the size of the available reporting delay sample may not be representative of the current case load.
bootstrapped_dist_fit( values, dist = "lognormal", samples = 2000, bootstraps = 10, bootstrap_samples = 250, max_value, verbose = FALSE )
bootstrapped_dist_fit( values, dist = "lognormal", samples = 2000, bootstraps = 10, bootstrap_samples = 250, max_value, verbose = FALSE )
values |
Integer vector of values. |
dist |
Character string, which distribution to fit. Defaults to
lognormal ( |
samples |
Numeric, number of samples to take overall from the bootstrapped posteriors. |
bootstraps |
Numeric, defaults to 1. The number of bootstrap samples
(with replacement) of the delay distribution to take. If |
bootstrap_samples |
Numeric, defaults to 250. The number of samples to take in each bootstrap if the sample size of the supplied delay distribution is less than its value. |
max_value |
Numeric, defaults to the maximum value in the observed data. Maximum delay to allow (added to output but does impact fitting). |
verbose |
Logical, defaults to |
A <dist_spec>
object summarising the bootstrapped distribution
# lognormal delays <- rlnorm(500, log(5), 1) out <- bootstrapped_dist_fit(delays, samples = 1000, bootstraps = 10, dist = "lognormal" ) out
# lognormal delays <- rlnorm(500, log(5), 1) out <- bootstrapped_dist_fit(delays, samples = 1000, bootstraps = 10, dist = "lognormal" ) out
<dist_spec>
This sets attributes for further processing
bound_dist(x, max = Inf, cdf_cutoff = 0)
bound_dist(x, max = Inf, cdf_cutoff = 0)
x |
A |
max |
Numeric, maximum value of the distribution. The distribution will
be truncated at this value. Default: |
cdf_cutoff |
Numeric; the desired CDF cutoff. Any part of the
cumulative distribution function beyond 1 minus the value of this argument is
removed. Default: |
a <dist_spec>
with relevant attributes set that define its bounds
This combines the parameters so that they can be fed as multiple delay
distributions to epinow()
or estimate_infections()
.
Note that distributions that already are combinations of other distributions cannot be combined with other combinations of distributions.
## S3 method for class 'dist_spec' c(...)
## S3 method for class 'dist_spec' c(...)
... |
The delay distributions to combine |
Combined delay distributions (with class <dist_spec>
)
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal( meanlog = 1.6, sdlog = 1, max = 20 ) dist1 + dist1 # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) c(dist1, dist2)
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal( meanlog = 1.6, sdlog = 1, max = 20 ) dist1 + dist1 # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) c(dist1, dist2)
Adds symmetric a credible interval based on quantiles.
calc_CrI(samples, summarise_by = NULL, CrI = 0.9)
calc_CrI(samples, summarise_by = NULL, CrI = 0.9)
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
CrI |
Numeric between 0 and 1. The credible interval for which to return values. Defaults to 0.9. |
A data.table containing the upper and lower bounds for the specified credible interval.
samples <- data.frame(value = 1:10, type = "car") # add 90% credible interval calc_CrI(samples) # add 90% credible interval grouped by type calc_CrI(samples, summarise_by = "type")
samples <- data.frame(value = 1:10, type = "car") # add 90% credible interval calc_CrI(samples) # add 90% credible interval grouped by type calc_CrI(samples, summarise_by = "type")
Adds symmetric credible intervals based on quantiles.
calc_CrIs(samples, summarise_by = NULL, CrIs = c(0.2, 0.5, 0.9))
calc_CrIs(samples, summarise_by = NULL, CrIs = c(0.2, 0.5, 0.9))
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
CrIs |
Numeric vector of credible intervals to calculate. |
A data.table containing the summarise_by
variables and the
specified lower and upper credible intervals.
samples <- data.frame(value = 1:10, type = "car") # add credible intervals calc_CrIs(samples) # add 90% credible interval grouped by type calc_CrIs(samples, summarise_by = "type")
samples <- data.frame(value = 1:10, type = "car") # add credible intervals calc_CrIs(samples) # add 90% credible interval grouped by type calc_CrIs(samples, summarise_by = "type")
Calculate summary statistics and credible intervals from a <data.frame>
by
group.
calc_summary_measures( samples, summarise_by = NULL, order_by = NULL, CrIs = c(0.2, 0.5, 0.9) )
calc_summary_measures( samples, summarise_by = NULL, order_by = NULL, CrIs = c(0.2, 0.5, 0.9) )
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
order_by |
A character vector of parameters to order by, defaults to
all |
CrIs |
Numeric vector of credible intervals to calculate. |
A data.table containing summary statistics by group.
samples <- data.frame(value = 1:10, type = "car") # default calc_summary_measures(samples) # by type calc_summary_measures(samples, summarise_by = "type")
samples <- data.frame(value = 1:10, type = "car") # default calc_summary_measures(samples) # by type calc_summary_measures(samples, summarise_by = "type")
Calculate summary statistics from a <data.frame>
by group.
Currently supports the mean, median and standard deviation.
calc_summary_stats(samples, summarise_by = NULL)
calc_summary_stats(samples, summarise_by = NULL)
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
A data.table containing the upper and lower bounds for the specified credible interval
samples <- data.frame(value = 1:10, type = "car") # default calc_summary_stats(samples) # by type calc_summary_stats(samples, summarise_by = "type")
samples <- data.frame(value = 1:10, type = "car") # default calc_summary_stats(samples) # by type calc_summary_stats(samples, summarise_by = "type")
This function removes nowcasts in the format produced by EpiNow2
from a
target directory for the date supplied.
clean_nowcasts(date = Sys.Date(), nowcast_dir = ".")
clean_nowcasts(date = Sys.Date(), nowcast_dir = ".")
date |
Date object. Defaults to today's date |
nowcast_dir |
Character string giving the filepath to the nowcast results directory. Defaults to the current directory. |
No return value, called for side effects
Removes regions with insufficient time points, and provides logging information on the input.
clean_regions(data, non_zero_points)
clean_regions(data, non_zero_points)
data |
A |
non_zero_points |
Numeric, the minimum number of time points with non-zero cases in a region required for that region to be evaluated. Defaults to 7. |
A dataframe of cleaned regional data
This convolves any consecutive nonparametric distributions contained in the <dist_spec>.
## S3 method for class 'dist_spec' collapse(x, ...)
## S3 method for class 'dist_spec' collapse(x, ...)
x |
A |
... |
ignored |
A <dist_spec>
where consecutive nonparametric distributions
have been convolved
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = 3, sd = 2, max = 20) # The maxf the sum of two distributions collapse(discretise(dist1 + dist2))
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = 3, sd = 2, max = 20) # The maxf the sum of two distributions collapse(discretise(dist1 + dist2))
Convert from mean and standard deviation to the log mean of the
lognormal distribution. Useful for defining distributions supported by
estimate_infections()
, epinow()
, and regional_epinow()
.
convert_to_logmean(mean, sd)
convert_to_logmean(mean, sd)
mean |
Numeric, mean of a distribution |
sd |
Numeric, standard deviation of a distribution |
The log mean of a lognormal distribution
convert_to_logmean(2, 1)
convert_to_logmean(2, 1)
Convert from mean and standard deviation to the log standard deviation of the
lognormal distribution. Useful for defining distributions supported by
estimate_infections()
, epinow()
, and regional_epinow()
.
convert_to_logsd(mean, sd)
convert_to_logsd(mean, sd)
mean |
Numeric, mean of a distribution |
sd |
Numeric, standard deviation of a distribution |
The log standard deviation of a lognormal distribution
convert_to_logsd(2, 1)
convert_to_logsd(2, 1)
This applies a lognormal convolution with given, potentially time-varying
parameters representing the parameters of the lognormal distribution used for
the convolution and an optional scaling factor. This is akin to the model
used in estimate_secondary()
and simulate_secondary()
.
convolve_and_scale( data, type = c("incidence", "prevalence"), family = c("none", "poisson", "negbin"), delay_max = 30, ... )
convolve_and_scale( data, type = c("incidence", "prevalence"), family = c("none", "poisson", "negbin"), delay_max = 30, ... )
data |
A |
type |
A character string indicating the type of observation the secondary reports are. Options include:
|
family |
Character string defining the observation model. Options are Negative binomial ("negbin"), the default, Poisson ("poisson"), and "none" meaning the expectation is returned. |
delay_max |
Integer, defaulting to 30 days. The maximum delay used in the convolution model. |
... |
Additional parameters to pass to the observation model (i.e
|
Up to version 1.4.0 this function was called simulate_secondary()
.
A <data.frame>
containing simulated data in the format required by
estimate_secondary()
.
estimate_secondary
# load data.table for manipulation library(data.table) #### Incidence data example #### # make some example secondary incidence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 40 percent of cases are reported cases[, scaling := 0.4] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.8][, sdlog := 0.5] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "incidence") cases #### Prevalence data example #### # make some example prevalence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 30 percent of cases are reported cases[, scaling := 0.3] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.6][, sdlog := 0.8] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "prevalence") cases
# load data.table for manipulation library(data.table) #### Incidence data example #### # make some example secondary incidence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 40 percent of cases are reported cases[, scaling := 0.4] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.8][, sdlog := 0.5] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "incidence") cases #### Prevalence data example #### # make some example prevalence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 30 percent of cases are reported cases[, scaling := 0.3] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.6][, sdlog := 0.8] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "prevalence") cases
Returns delay distributions formatted for usage by downstream functions.
delay_opts( dist = Fixed(0), ..., fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE )
delay_opts( dist = Fixed(0), ..., fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE )
dist |
A delay distribution or series of delay distributions. Default is a fixed distribution with all mass at 0, i.e. no delay. |
... |
deprecated; use |
fixed |
deprecated; use |
default_cdf_cutoff |
Numeric; default CDF cutoff to be used if an
unconstrained distribution is passed as |
weight_prior |
Logical; if TRUE (default), any priors given in |
A <delay_opts>
object summarising the input delay distributions.
convert_to_logmean()
convert_to_logsd()
bootstrapped_dist_fit()
Distributions
# no delays delay_opts() # A single delay that has uncertainty delay <- LogNormal(mean = Normal(1, 0.2), sd = Normal(0.5, 0.1), max = 14) delay_opts(delay) # A single delay without uncertainty delay <- LogNormal(meanlog = 1, sdlog = 0.5, max = 14) delay_opts(delay) # Multiple delays (in this case twice the same) delay_opts(delay + delay)
# no delays delay_opts() # A single delay that has uncertainty delay <- LogNormal(mean = Normal(1, 0.2), sd = Normal(0.5, 0.1), max = 14) delay_opts(delay) # A single delay without uncertainty delay <- LogNormal(meanlog = 1, sdlog = 0.5, max = 14) delay_opts(delay) # Multiple delays (in this case twice the same) delay_opts(delay + delay)
## S3 method for class 'dist_spec' discretise(x, strict = TRUE, ...) discretize(x, ...)
## S3 method for class 'dist_spec' discretise(x, strict = TRUE, ...) discretize(x, ...)
x |
A |
strict |
Logical; If |
... |
ignored |
A <dist_spec>
where all distributions with constant parameters are
nonparametric.
The probability mass function of the discretised probability distribution is a vector where the first entry corresponds to the integral over the (0,1] interval of the corresponding continuous distribution (probability of integer 0), the second entry corresponds to the (0,2] interval (probability mass of integer 1), the third entry corresponds to the (1, 3] interval (probability mass of integer 2), etc. This approximates the true probability mass function of a double censored distribution which arises from the difference of two censored events.
Charniga, K., et al. “Best practices for estimating and reporting epidemiological delay distributions of infectious diseases using public health surveillance and healthcare data”, arXiv e-prints, 2024. doi:10.48550/arXiv.2405.08841 Park, S. W., et al., "Estimating epidemiological delay distributions for infectious diseases", medRxiv, 2024. doi:10.1101/2024.01.12.24301247
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) # The maxf the sum of two distributions discretise(dist1 + dist2, strict = FALSE)
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) # The maxf the sum of two distributions discretise(dist1 + dist2, strict = FALSE)
Fits an integer adjusted exponential, gamma or lognormal distribution using stan.
dist_fit( values = NULL, samples = 1000, cores = 1, chains = 2, dist = "exp", verbose = FALSE, backend = "rstan" )
dist_fit( values = NULL, samples = 1000, cores = 1, chains = 2, dist = "exp", verbose = FALSE, backend = "rstan" )
values |
Numeric vector of values |
samples |
Numeric, number of samples to take. Must be >= 1000. Defaults to 1000. |
cores |
Numeric, defaults to 1. Number of CPU cores to use (no effect if greater than the number of chains). |
chains |
Numeric, defaults to 2. Number of MCMC chains to use. More is better with the minimum being two. |
dist |
Character string, which distribution to fit. Defaults to
exponential ( |
verbose |
Logical, defaults to FALSE. Should verbose progress messages be printed. |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
A stan fit of an interval censored distribution
# integer adjusted exponential model dist_fit(rexp(1:100, 2), samples = 1000, dist = "exp", cores = ifelse(interactive(), 4, 1), verbose = TRUE ) # integer adjusted gamma model dist_fit(rgamma(1:100, 5, 5), samples = 1000, dist = "gamma", cores = ifelse(interactive(), 4, 1), verbose = TRUE ) # integer adjusted lognormal model dist_fit(rlnorm(1:100, log(5), 0.2), samples = 1000, dist = "lognormal", cores = ifelse(interactive(), 4, 1), verbose = TRUE )
# integer adjusted exponential model dist_fit(rexp(1:100, 2), samples = 1000, dist = "exp", cores = ifelse(interactive(), 4, 1), verbose = TRUE ) # integer adjusted gamma model dist_fit(rgamma(1:100, 5, 5), samples = 1000, dist = "gamma", cores = ifelse(interactive(), 4, 1), verbose = TRUE ) # integer adjusted lognormal model dist_fit(rlnorm(1:100, log(5), 0.2), samples = 1000, dist = "lognormal", cores = ifelse(interactive(), 4, 1), verbose = TRUE )
Probability distributions
Generates a nonparametric distribution.
LogNormal(meanlog, sdlog, mean, sd, ...) Gamma(shape, rate, scale, mean, sd, ...) Normal(mean, sd, ...) Fixed(value, ...) NonParametric(pmf, ...)
LogNormal(meanlog, sdlog, mean, sd, ...) Gamma(shape, rate, scale, mean, sd, ...) Normal(mean, sd, ...) Fixed(value, ...) NonParametric(pmf, ...)
meanlog , sdlog
|
mean and standard deviation of the distribution
on the log scale with default values of |
mean , sd
|
mean and standard deviation of the distribution |
... |
arguments to define the limits of the distribution that will be
passed to |
shape , scale
|
shape and scale parameters. Must be positive,
|
rate |
an alternative way to specify the scale. |
value |
Value of the fixed (delta) distribution |
pmf |
Probability mass of the given distribution; this is passed as a zero-indexed numeric vector (i.e. the fist entry represents the probability mass of zero). If not summing to one it will be normalised to sum to one internally. |
Probability distributions are ubiquitous in EpiNow2, usually representing epidemiological delays (e.g., the generation time for delays between becoming infecting and infecting others; or reporting delays)
They are generated using functions that have a name corresponding to the
probability distribution that is being used. They generated dist_spec
objects that are then passed to the models underlying EpiNow2.
All parameters can be given either as fixed values (a numeric value) or as
uncertain values (a dist_sepc
). If given as uncertain values, currently
only normally distributed parameters (generated using Normal()
) are
supported.
Each distribution has a representation in terms of "natural" parameters (the ones used in stan) but can sometimes also be specified using other parameters such as the mean or standard deviation of the distribution. If not given as natural parameters then these will be calculated from the given parameters. If they have uncertainty, this will be done by random sampling from the given uncertainty and converting resulting parameters to their natural representation.
Currently available distributions are lognormal, gamma, normal, fixed (delta) and nonparametric. The nonparametric is a special case where the probability mass function is given directly as a numeric vector.
A dist_spec
representing a distribution of the given
specification.
LogNormal(mean = 4, sd = 1) LogNormal(mean = 4, sd = 1, max = 10) LogNormal(mean = Normal(4, 1), sd = 1, max = 10) Gamma(mean = 4, sd = 1) Gamma(shape = 16, rate = 4) Gamma(shape = Normal(16, 2), rate = Normal(4, 1)) Gamma(shape = Normal(16, 2), scale = Normal(1/4, 1)) Normal(mean = 4, sd = 1) Normal(mean = 4, sd = 1, max = 10) Fixed(value = 3) Fixed(value = 3.5) NonParametric(c(0.1, 0.3, 0.2, 0.4)) NonParametric(c(0.1, 0.3, 0.2, 0.1, 0.1))
LogNormal(mean = 4, sd = 1) LogNormal(mean = 4, sd = 1, max = 10) LogNormal(mean = Normal(4, 1), sd = 1, max = 10) Gamma(mean = 4, sd = 1) Gamma(shape = 16, rate = 4) Gamma(shape = Normal(16, 2), rate = Normal(4, 1)) Gamma(shape = Normal(16, 2), scale = Normal(1/4, 1)) Normal(mean = 4, sd = 1) Normal(mean = 4, sd = 1, max = 10) Fixed(value = 3) Fixed(value = 3.5) NonParametric(c(0.1, 0.3, 0.2, 0.4)) NonParametric(c(0.1, 0.3, 0.2, 0.1, 0.1))
This function wraps the functionality of estimate_infections()
in order
to estimate Rt and cases by date of infection and forecast these infections
into the future. In addition to the functionality of
estimate_infections()
it produces additional summary output useful for
reporting results and interpreting them as well as error catching and
reporting, making it particularly useful for production use e.g. running at
set intervals on a dedicated server.
epinow( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = TRUE, zero_threshold = Inf, return_output = is.null(target_folder), output = c("samples", "plots", "latest", "fit", "timing"), plot_args = list(), target_folder = NULL, target_date, logs = tempdir(), id = "epinow", verbose = interactive(), reported_cases )
epinow( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = TRUE, zero_threshold = Inf, return_output = is.null(target_folder), output = c("samples", "plots", "latest", "fit", "timing"), plot_args = list(), target_folder = NULL, target_date, logs = tempdir(), id = "epinow", verbose = interactive(), reported_cases )
data |
A |
generation_time |
A call to |
delays |
A call to |
truncation |
A call to |
rt |
A list of options as generated by |
backcalc |
A list of options as generated by |
gp |
A list of options as generated by |
obs |
A list of options as generated by |
stan |
A list of stan options as generated by |
horizon |
Numeric, defaults to 7. Number of days into the future to forecast. |
CrIs |
Numeric vector of credible intervals to calculate. |
filter_leading_zeros |
Logical, defaults to TRUE. Should zeros at the start of the time series be filtered out. |
zero_threshold |
Numeric defaults
to Inf. Indicates if detected zero cases are meaningful by using a threshold
number of cases based on the 7-day average. If the average is above this
threshold then the zero is replaced using |
return_output |
Logical, defaults to FALSE. Should output be returned, this automatically updates to TRUE if no directory for saving is specified. |
output |
A character vector of optional output to return. Supported
options are samples ("samples"), plots ("plots"), the run time ("timing"),
copying the dated folder into a latest folder (if |
plot_args |
A list of optional arguments passed to |
target_folder |
Character string specifying where to save results (will create if not present). |
target_date |
Date, defaults to maximum found in the data if not specified. |
logs |
Character path indicating the target folder in which to store log
information. Defaults to the temporary directory if not specified. Default
logging can be disabled if |
id |
A character string used to assign logging information on error.
Used by |
verbose |
Logical, defaults to |
reported_cases |
Deprecated; use |
A list of output from estimate_infections with additional elements summarising results and reporting errors if they have occurred.
estimate_infections()
forecast_infections()
regional_epinow()
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # set an example generation time. In practice this should use an estimate # from the literature or be estimated from data generation_time <- Gamma( shape = Normal(1.3, 0.3), rate = Normal(0.37, 0.09), max = 14 ) # set an example incubation period. In practice this should use an estimate # from the literature or be estimated from data incubation_period <- LogNormal( meanlog = Normal(1.6, 0.06), sdlog = Normal(0.4, 0.07), max = 14 ) # set an example reporting delay. In practice this should use an estimate # from the literature or be estimated from data reporting_delay <- LogNormal(mean = 2, sd = 1, max = 10) # example case data reported_cases <- example_confirmed[1:40] # estimate Rt and nowcast/forecast cases by date of infection out <- epinow( data = reported_cases, generation_time = gt_opts(generation_time), rt = rt_opts(prior = list(mean = 2, sd = 0.1)), delays = delay_opts(incubation_period + reporting_delay) ) # summary of the latest estimates summary(out) # plot estimates plot(out) # summary of R estimates summary(out, type = "parameters", params = "R") options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # set an example generation time. In practice this should use an estimate # from the literature or be estimated from data generation_time <- Gamma( shape = Normal(1.3, 0.3), rate = Normal(0.37, 0.09), max = 14 ) # set an example incubation period. In practice this should use an estimate # from the literature or be estimated from data incubation_period <- LogNormal( meanlog = Normal(1.6, 0.06), sdlog = Normal(0.4, 0.07), max = 14 ) # set an example reporting delay. In practice this should use an estimate # from the literature or be estimated from data reporting_delay <- LogNormal(mean = 2, sd = 1, max = 10) # example case data reported_cases <- example_confirmed[1:40] # estimate Rt and nowcast/forecast cases by date of infection out <- epinow( data = reported_cases, generation_time = gt_opts(generation_time), rt = rt_opts(prior = list(mean = 2, sd = 0.1)), delays = delay_opts(incubation_period + reporting_delay) ) # summary of the latest estimates summary(out) # plot estimates plot(out) # summary of R estimates summary(out, type = "parameters", params = "R") options(old_opts)
The function has been adapted from a similar function in the epinowcast package (Copyright holder: epinowcast authors, under MIT License).
epinow2_cmdstan_model( model = "estimate_infections", dir = system.file("stan", package = "EpiNow2"), verbose = FALSE, ... )
epinow2_cmdstan_model( model = "estimate_infections", dir = system.file("stan", package = "EpiNow2"), verbose = FALSE, ... )
model |
A character string indicating the model to use. Needs to be
present in |
dir |
A character string specifying the path to any stan files to include in the model. If missing the package default is used. |
verbose |
Logical, defaults to |
... |
Additional arguments passed to |
A cmdstanr
model.
Estimate a log normal delay distribution from a vector of integer delays.
Currently this function is a simple wrapper for bootstrapped_dist_fit()
.
estimate_delay(delays, ...)
estimate_delay(delays, ...)
delays |
Integer vector of delays |
... |
Arguments to pass to internal methods. |
A <dist_spec>
summarising the bootstrapped distribution
delays <- rlnorm(500, log(5), 1) estimate_delay(delays, samples = 1000, bootstraps = 10)
delays <- rlnorm(500, log(5), 1) estimate_delay(delays, samples = 1000, bootstraps = 10)
Uses a non-parametric approach to reconstruct cases by date of infection
from reported cases. It uses either a generative Rt model or non-parametric
back calculation to estimate underlying latent infections and then maps
these infections to observed cases via uncertain reporting delays and a
flexible observation model. See the examples and function arguments for the
details of all options. The default settings may not be sufficient for your
use case so the number of warmup samples (stan_args = list(warmup)
) may
need to be increased as may the overall number of samples. Follow the links
provided by any warnings messages to diagnose issues with the MCMC fit. It
is recommended to explore several of the Rt estimation approaches supported
as not all of them may be suited to users own use cases. See
here
for an example of using estimate_infections
within the epinow
wrapper to
estimate Rt for Covid-19 in a country from the ECDC data source.
estimate_infections( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = TRUE, zero_threshold = Inf, weigh_delay_priors = TRUE, id = "estimate_infections", verbose = interactive(), reported_cases )
estimate_infections( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = TRUE, zero_threshold = Inf, weigh_delay_priors = TRUE, id = "estimate_infections", verbose = interactive(), reported_cases )
data |
A |
generation_time |
A call to |
delays |
A call to |
truncation |
A call to |
rt |
A list of options as generated by |
backcalc |
A list of options as generated by |
gp |
A list of options as generated by |
obs |
A list of options as generated by |
stan |
A list of stan options as generated by |
horizon |
Numeric, defaults to 7. Number of days into the future to forecast. |
CrIs |
Numeric vector of credible intervals to calculate. |
filter_leading_zeros |
Logical, defaults to TRUE. Should zeros at the start of the time series be filtered out. |
zero_threshold |
Numeric defaults
to Inf. Indicates if detected zero cases are meaningful by using a threshold
number of cases based on the 7-day average. If the average is above this
threshold then the zero is replaced using |
weigh_delay_priors |
Logical. If TRUE (default), all delay distribution priors will be weighted by the number of observation data points, in doing so approximately placing an independent prior at each time step and usually preventing the posteriors from shifting. If FALSE, no weight will be applied, i.e. delay distributions will be treated as a single parameters. |
id |
A character string used to assign logging information on error.
Used by |
verbose |
Logical, defaults to |
reported_cases |
Deprecated; use |
A list of output including: posterior samples, summarised posterior samples, data used to fit the model, and the fit object itself.
epinow()
regional_epinow()
forecast_infections()
estimate_truncation()
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # get example case counts reported_cases <- example_confirmed[1:60] # set an example generation time. In practice this should use an estimate # from the literature or be estimated from data generation_time <- Gamma( shape = Normal(1.3, 0.3), rate = Normal(0.37, 0.09), max = 14 ) # set an example incubation period. In practice this should use an estimate # from the literature or be estimated from data incubation_period <- LogNormal( meanlog = Normal(1.6, 0.06), sdlog = Normal(0.4, 0.07), max = 14 ) # set an example reporting delay. In practice this should use an estimate # from the literature or be estimated from data reporting_delay <- LogNormal(mean = 2, sd = 1, max = 10) # for more examples, see the "estimate_infections examples" vignette def <- estimate_infections(reported_cases, generation_time = gt_opts(generation_time), delays = delay_opts(incubation_period + reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.1)) ) # real time estimates summary(def) # summary plot plot(def) options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # get example case counts reported_cases <- example_confirmed[1:60] # set an example generation time. In practice this should use an estimate # from the literature or be estimated from data generation_time <- Gamma( shape = Normal(1.3, 0.3), rate = Normal(0.37, 0.09), max = 14 ) # set an example incubation period. In practice this should use an estimate # from the literature or be estimated from data incubation_period <- LogNormal( meanlog = Normal(1.6, 0.06), sdlog = Normal(0.4, 0.07), max = 14 ) # set an example reporting delay. In practice this should use an estimate # from the literature or be estimated from data reporting_delay <- LogNormal(mean = 2, sd = 1, max = 10) # for more examples, see the "estimate_infections examples" vignette def <- estimate_infections(reported_cases, generation_time = gt_opts(generation_time), delays = delay_opts(incubation_period + reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.1)) ) # real time estimates summary(def) # summary plot plot(def) options(old_opts)
Estimates the relationship between a primary and secondary observation, for
example hospital admissions and deaths or hospital admissions and bed
occupancy. See secondary_opts()
for model structure options. See parameter
documentation for model defaults and options. See the examples for case
studies using synthetic data and
here
for an example of forecasting Covid-19 deaths from Covid-19 cases. See
here for
a prototype function that may be used to estimate and forecast a secondary
observation from a primary across multiple regions and
here # nolint
for an application forecasting Covid-19 deaths in Germany and Poland.
estimate_secondary( data, secondary = secondary_opts(), delays = delay_opts(LogNormal(meanlog = Normal(2.5, 0.5), sdlog = Normal(0.47, 0.25), max = 30), weight_prior = FALSE), truncation = trunc_opts(), obs = obs_opts(), stan = stan_opts(), burn_in = 14, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = FALSE, zero_threshold = Inf, priors = NULL, model = NULL, weigh_delay_priors = FALSE, verbose = interactive(), ..., reports )
estimate_secondary( data, secondary = secondary_opts(), delays = delay_opts(LogNormal(meanlog = Normal(2.5, 0.5), sdlog = Normal(0.47, 0.25), max = 30), weight_prior = FALSE), truncation = trunc_opts(), obs = obs_opts(), stan = stan_opts(), burn_in = 14, CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = FALSE, zero_threshold = Inf, priors = NULL, model = NULL, weigh_delay_priors = FALSE, verbose = interactive(), ..., reports )
data |
A |
secondary |
A call to |
delays |
A call to |
truncation |
A call to |
obs |
A list of options as generated by |
stan |
A list of stan options as generated by |
burn_in |
Integer, defaults to 14 days. The number of data points to use for estimation but not to fit to at the beginning of the time series. This must be less than the number of observations. |
CrIs |
Numeric vector of credible intervals to calculate. |
filter_leading_zeros |
Logical, defaults to TRUE. Should zeros at the start of the time series be filtered out. |
zero_threshold |
Numeric defaults
to Inf. Indicates if detected zero cases are meaningful by using a threshold
number of cases based on the 7-day average. If the average is above this
threshold then the zero is replaced using |
priors |
A |
model |
A compiled stan model to override the default model. May be useful for package developers or those developing extensions. |
weigh_delay_priors |
Logical. If TRUE, all delay distribution priors will be weighted by the number of observation data points, in doing so approximately placing an independent prior at each time step and usually preventing the posteriors from shifting. If FALSE (default), no weight will be applied, i.e. delay distributions will be treated as a single parameters. |
verbose |
Logical, should model fitting progress be returned. Defaults
to |
... |
Additional parameters to pass to |
reports |
Deprecated; use |
A list containing: predictions
(a <data.frame>
ordered by date
with the primary, and secondary observations, and a summary of the model
estimated secondary observations), posterior
which contains a summary of
the entire model posterior, data
(a list of data used to fit the
model), and fit
(the stanfit
object).
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # load data.table for manipulation library(data.table) #### Incidence data example #### # make some example secondary incidence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 40 percent of cases are reported cases[, scaling := 0.4] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.8][, sdlog := 0.5] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "incidence") # # fit model to example data specifying a weak prior for fraction reported # with a secondary case inc <- estimate_secondary(cases[1:60], obs = obs_opts(scale = list(mean = 0.2, sd = 0.2), week_effect = FALSE) ) plot(inc, primary = TRUE) # forecast future secondary cases from primary inc_preds <- forecast_secondary( inc, cases[seq(61, .N)][, value := primary] ) plot(inc_preds, new_obs = cases, from = "2020-05-01") #### Prevalence data example #### # make some example prevalence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 30 percent of cases are reported cases[, scaling := 0.3] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.6][, sdlog := 0.8] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "prevalence") # fit model to example prevalence data prev <- estimate_secondary(cases[1:100], secondary = secondary_opts(type = "prevalence"), obs = obs_opts( week_effect = FALSE, scale = list(mean = 0.4, sd = 0.1) ) ) plot(prev, primary = TRUE) # forecast future secondary cases from primary prev_preds <- forecast_secondary( prev, cases[seq(101, .N)][, value := primary] ) plot(prev_preds, new_obs = cases, from = "2020-06-01") options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # load data.table for manipulation library(data.table) #### Incidence data example #### # make some example secondary incidence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 40 percent of cases are reported cases[, scaling := 0.4] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.8][, sdlog := 0.5] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "incidence") # # fit model to example data specifying a weak prior for fraction reported # with a secondary case inc <- estimate_secondary(cases[1:60], obs = obs_opts(scale = list(mean = 0.2, sd = 0.2), week_effect = FALSE) ) plot(inc, primary = TRUE) # forecast future secondary cases from primary inc_preds <- forecast_secondary( inc, cases[seq(61, .N)][, value := primary] ) plot(inc_preds, new_obs = cases, from = "2020-05-01") #### Prevalence data example #### # make some example prevalence data cases <- example_confirmed cases <- as.data.table(cases)[, primary := confirm] # Assume that only 30 percent of cases are reported cases[, scaling := 0.3] # Parameters of the assumed log normal delay distribution cases[, meanlog := 1.6][, sdlog := 0.8] # Simulate secondary cases cases <- convolve_and_scale(cases, type = "prevalence") # fit model to example prevalence data prev <- estimate_secondary(cases[1:100], secondary = secondary_opts(type = "prevalence"), obs = obs_opts( week_effect = FALSE, scale = list(mean = 0.4, sd = 0.1) ) ) plot(prev, primary = TRUE) # forecast future secondary cases from primary prev_preds <- forecast_secondary( prev, cases[seq(101, .N)][, value := primary] ) plot(prev_preds, new_obs = cases, from = "2020-06-01") options(old_opts)
Estimates a truncation distribution from multiple snapshots of the same
data source over time. This distribution can then be used passed to the
truncation
argument in regional_epinow()
, epinow()
, and
estimate_infections()
to adjust for truncated data and propagate the
uncertainty associated with data truncation into the estimates.
See here
for an example of using this approach on Covid-19 data in England. The
functionality offered by this function is now available in a more principled
manner in the epinowcast
R package.
The model of truncation is as follows:
The truncation distribution is assumed to be discretised log normal wit a mean and standard deviation that is informed by the data.
The data set with the latest observations is adjusted for truncation using the truncation distribution.
Earlier data sets are recreated by applying the truncation distribution to the adjusted latest observations in the time period of the earlier data set. These data sets are then compared to the earlier observations assuming a negative binomial observation model with an additive noise term to deal with zero observations.
This model is then fit using stan
with standard normal, or half normal,
prior for the mean, standard deviation, 1 over the square root of the
overdispersion and additive noise term.
This approach assumes that:
Current truncation is related to past truncation.
Truncation is a multiplicative scaling of underlying reported cases.
Truncation is log normally distributed.
estimate_truncation( data, truncation = trunc_opts(LogNormal(meanlog = Normal(0, 1), sdlog = Normal(1, 1), max = 10)), model = NULL, stan = stan_opts(), CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = FALSE, zero_threshold = Inf, weigh_delay_priors = FALSE, verbose = TRUE, ..., obs )
estimate_truncation( data, truncation = trunc_opts(LogNormal(meanlog = Normal(0, 1), sdlog = Normal(1, 1), max = 10)), model = NULL, stan = stan_opts(), CrIs = c(0.2, 0.5, 0.9), filter_leading_zeros = FALSE, zero_threshold = Inf, weigh_delay_priors = FALSE, verbose = TRUE, ..., obs )
data |
A list of |
truncation |
A call to |
model |
A compiled stan model to override the default model. May be useful for package developers or those developing extensions. |
stan |
A list of stan options as generated by |
CrIs |
Numeric vector of credible intervals to calculate. |
filter_leading_zeros |
Logical, defaults to TRUE. Should zeros at the start of the time series be filtered out. |
zero_threshold |
Numeric defaults
to Inf. Indicates if detected zero cases are meaningful by using a threshold
number of cases based on the 7-day average. If the average is above this
threshold then the zero is replaced using |
weigh_delay_priors |
Deprecated; use the |
verbose |
Logical, should model fitting progress be returned. |
... |
Additional parameters to pass to |
obs |
Deprecated; use |
A list containing: the summary parameters of the truncation
distribution (dist
), which could be passed to the truncation
argument
of epinow()
, regional_epinow()
, and estimate_infections()
, the
estimated CMF of the truncation distribution (cmf
, can be used to
adjusted new data), a <data.frame>
containing the observed truncated
data, latest observed data and the adjusted for
truncation observations (obs
), a <data.frame>
containing the last
observed data (last_obs
, useful for plotting and validation), the data
used for fitting (data
) and the fit object (fit
).
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # fit model to example data # See [example_truncated] for more details est <- estimate_truncation(example_truncated, verbose = interactive(), chains = 2, iter = 2000 ) # summary of the distribution est$dist # summary of the estimated truncation cmf (can be applied to new data) print(est$cmf) # observations linked to truncation adjusted estimates print(est$obs) # validation plot of observations vs estimates plot(est) # Pass the truncation distribution to `epinow()`. # Note, we're using the last snapshot as the observed data as it contains # all the previous snapshots. Also, we're using the default options for # illustrative purposes only. out <- epinow( example_truncated[[5]], truncation = trunc_opts(est$dist) ) plot(out) options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # fit model to example data # See [example_truncated] for more details est <- estimate_truncation(example_truncated, verbose = interactive(), chains = 2, iter = 2000 ) # summary of the distribution est$dist # summary of the estimated truncation cmf (can be applied to new data) print(est$cmf) # observations linked to truncation adjusted estimates print(est$obs) # validation plot of observations vs estimates plot(est) # Pass the truncation distribution to `epinow()`. # Note, we're using the last snapshot as the observed data as it contains # all the previous snapshots. Also, we're using the default options for # illustrative purposes only. out <- epinow( example_truncated[[5]], truncation = trunc_opts(est$dist) ) plot(out) options(old_opts)
An example data frame of observed cases
example_confirmed
example_confirmed
A data frame containing cases reported on each date.
An example of a generation time estimate. See here for details: https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/generation-time.R
example_generation_time
example_generation_time
A dist_spec
object summarising the distribution
An example of an incubation period estimate. See here for details: https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/incubation-period.R # nolint
example_incubation_period
example_incubation_period
A dist_spec
object summarising the distribution
An example of an reporting delay estimate. See here for details: https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/reporting-delay # nolint
example_reporting_delay
example_reporting_delay
A dist_spec
object summarising the distribution
An example dataset of observed cases with truncation applied.
This data is generated internally for use in the example of
estimate_truncation()
. For details on how the data is generated, see
https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/truncated.R #nolint
example_truncated
example_truncated
A list of data.table
s containing cases reported on each date until
a point of truncation.
Each element of the list is a data.table
with the following columns:
Date of case report.
Number of confirmed cases.
his function exposes internal stan functions in R from a user supplied list of target files. Allows for testing of stan functions in R and potentially user use in R code.
expose_stan_fns(files, target_dir, ...)
expose_stan_fns(files, target_dir, ...)
files |
A character vector indicating the target files. |
target_dir |
A character string indicating the target directory for the file. |
... |
Additional arguments passed to |
No return value, called for side effects
Helper function to extract the credible intervals present in a
<data.frame>
.
extract_CrIs(summarised)
extract_CrIs(summarised)
summarised |
A |
A numeric vector of credible intervals detected in
the <data.frame>
.
samples <- data.frame(value = 1:10, type = "car") summarised <- calc_CrIs(samples, summarise_by = "type", CrIs = c(seq(0.05, 0.95, 0.05)) ) extract_CrIs(summarised)
samples <- data.frame(value = 1:10, type = "car") summarised <- calc_CrIs(samples, summarise_by = "type", CrIs = c(seq(0.05, 0.95, 0.05)) ) extract_CrIs(summarised)
Extracts posterior samples to use to initialise a full model fit. This may
be useful for certain data sets where the sampler gets stuck or cannot
easily be initialised. In estimate_infections()
, epinow()
and
regional_epinow()
this option can be engaged by setting
stan_opts(init_fit = <stanfit>)
.
This implementation is based on the approach taken in epidemia authored by James Scott.
extract_inits(fit, current_inits, exclude_list = NULL, samples = 50)
extract_inits(fit, current_inits, exclude_list = NULL, samples = 50)
fit |
A |
current_inits |
A function that returns a list of initial conditions
(such as |
exclude_list |
A character vector of parameters to not initialise from
the fit object, defaulting to |
samples |
Numeric, defaults to 50. Number of posterior samples. |
A function that when called returns a set of initial conditions as a named list.
If the object
argument is a <stanfit>
object, it simply returns the
result of rstan::extract()
. If it is a <CmdStanMCMC>
it returns samples
in the same format as rstan::extract()
does for <stanfit>
objects.
extract_samples(stan_fit, pars = NULL, include = TRUE)
extract_samples(stan_fit, pars = NULL, include = TRUE)
stan_fit |
A |
pars |
Any selection of parameters to extract |
include |
whether the parameters specified in |
List of data.tables with samples
Extracts summarised parameter posteriors from a stanfit
object using
rstan::summary()
in a format consistent with other summary functions
in {EpiNow2}
.
extract_stan_param( fit, params = NULL, CrIs = c(0.2, 0.5, 0.9), var_names = FALSE )
extract_stan_param( fit, params = NULL, CrIs = c(0.2, 0.5, 0.9), var_names = FALSE )
fit |
A |
params |
A character vector of parameters to extract. Defaults to all parameters. |
CrIs |
Numeric vector of credible intervals to calculate. |
var_names |
Logical defaults to |
A <data.table>
summarising parameter posteriors. Contains a
following variables: variable
, mean
, mean_se
, sd
, median
, and
lower_
, upper_
followed by credible interval labels indicating the
credible intervals present.
A helper function that allows the selection of region specific settings if present and otherwise applies the overarching settings.
filter_opts(opts, region)
filter_opts(opts, region)
opts |
Either a list of calls to an |
region |
A character string indicating a region of interest. |
A list of options
<dist_spec>
If the given <dist_spec>
has any uncertainty, it is removed and the
corresponding distribution converted into a fixed one.
## S3 method for class 'dist_spec' fix_parameters(x, strategy = c("mean", "sample"), ...)
## S3 method for class 'dist_spec' fix_parameters(x, strategy = c("mean", "sample"), ...)
x |
A |
strategy |
Character; either "mean" (use the mean estimates of the
mean and standard deviation) or "sample" (randomly sample mean and
standard deviation from uncertainty given in the |
... |
ignored |
A <dist_spec>
object without uncertainty
# An uncertain gamma distribution with mean 3 and sd 2 dist <- LogNormal( meanlog = Normal(3, 0.5), sdlog = Normal(2, 0.5), max = 20 ) fix_parameters(dist)
# An uncertain gamma distribution with mean 3 and sd 2 dist <- LogNormal( meanlog = Normal(3, 0.5), sdlog = Normal(2, 0.5), max = 20 ) fix_parameters(dist)
This function simulates infections using an existing fit to observed cases
but with a modified time-varying reproduction number. This can be used to
explore forecast models or past counterfactuals. Simulations can be run in
parallel using future::plan()
.
forecast_infections( estimates, R = NULL, model = NULL, samples = NULL, batch_size = 10, backend = "rstan", verbose = interactive() )
forecast_infections( estimates, R = NULL, model = NULL, samples = NULL, batch_size = 10, backend = "rstan", verbose = interactive() )
estimates |
The |
R |
A numeric vector of reproduction numbers; these will overwrite the
reproduction numbers contained in |
model |
A compiled stan model as returned by |
samples |
Numeric, number of posterior samples to simulate from. The
default is to use all samples in the |
batch_size |
Numeric, defaults to 10. Size of batches in which to simulate. May decrease run times due to reduced IO costs but this is still being evaluated. If set to NULL then all simulations are done at once. |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
verbose |
Logical defaults to |
A list of output as returned by estimate_infections()
but based on
results from the specified scenario rather than fitting.
dist_spec()
generation_time_opts()
delay_opts()
rt_opts()
estimate_infections()
trunc_opts()
stan_opts()
obs_opts()
gp_opts()
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # get example case counts reported_cases <- example_confirmed[1:50] # fit model to data to recover Rt estimates est <- estimate_infections(reported_cases, generation_time = generation_time_opts(example_generation_time), delays = delay_opts(example_incubation_period + example_reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.1), rw = 7), obs = obs_opts(scale = list(mean = 0.1, sd = 0.01)), gp = NULL, horizon = 0 ) # update Rt trajectory and simulate new infections using it R <- c(rep(NA_real_, 26), rep(0.5, 10), rep(0.8, 14)) sims <- forecast_infections(est, R) plot(sims) # with a data.frame input of samples R_dt <- data.frame( date = seq( min(summary(est, type = "parameters", param = "R")$date), by = "day", length.out = length(R) ), value = R ) sims <- forecast_infections(est, R_dt) plot(sims) #' # with a data.frame input of samples R_samples <- summary(est, type = "samples", param = "R") R_samples <- R_samples[, .(date, sample, value)][sample <= 1000][date <= "2020-04-10" ] R_samples <- R_samples[date >= "2020-04-01", value := 1.1] sims <- forecast_infections(est, R_samples) plot(sims) options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # get example case counts reported_cases <- example_confirmed[1:50] # fit model to data to recover Rt estimates est <- estimate_infections(reported_cases, generation_time = generation_time_opts(example_generation_time), delays = delay_opts(example_incubation_period + example_reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.1), rw = 7), obs = obs_opts(scale = list(mean = 0.1, sd = 0.01)), gp = NULL, horizon = 0 ) # update Rt trajectory and simulate new infections using it R <- c(rep(NA_real_, 26), rep(0.5, 10), rep(0.8, 14)) sims <- forecast_infections(est, R) plot(sims) # with a data.frame input of samples R_dt <- data.frame( date = seq( min(summary(est, type = "parameters", param = "R")$date), by = "day", length.out = length(R) ), value = R ) sims <- forecast_infections(est, R_dt) plot(sims) #' # with a data.frame input of samples R_samples <- summary(est, type = "samples", param = "R") R_samples <- R_samples[, .(date, sample, value)][sample <= 1000][date <= "2020-04-10" ] R_samples <- R_samples[date >= "2020-04-01", value := 1.1] sims <- forecast_infections(est, R_samples) plot(sims) options(old_opts)
This function forecasts secondary observations using the output of
estimate_secondary()
and either observed primary data or a forecast of
primary observations. See the examples of estimate_secondary()
for one use case. It can also be combined with estimate_infections()
to
produce a forecast for a secondary observation from a forecast of a primary
observation. See the examples of estimate_secondary()
for
example use cases on synthetic data. See
here
for an example of forecasting Covid-19 deaths from Covid-19 cases.
forecast_secondary( estimate, primary, primary_variable = "reported_cases", model = NULL, backend = "rstan", samples = NULL, all_dates = FALSE, CrIs = c(0.2, 0.5, 0.9) )
forecast_secondary( estimate, primary, primary_variable = "reported_cases", model = NULL, backend = "rstan", samples = NULL, all_dates = FALSE, CrIs = c(0.2, 0.5, 0.9) )
estimate |
An object of class "estimate_secondary" as produced by
|
primary |
A |
primary_variable |
A character string indicating the primary variable,
defaulting to "reported_cases". Only used when primary is of class
|
model |
A compiled stan model as returned by |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
samples |
Numeric, number of posterior samples to simulate from. The
default is to use all samples in the |
all_dates |
Logical, defaults to FALSE. Should a forecast for all dates and not just those in the forecast horizon be returned. |
CrIs |
Numeric vector of credible intervals to calculate. |
A list containing: predictions
(a <data.frame>
ordered by date
with the primary, and secondary observations, and a summary of the forecast
secondary observations. For primary observations in the forecast horizon
when uncertainty is present the median is used), samples
a <data.frame>
of forecast secondary observation posterior samples, and forecast
a summary
of the forecast secondary observation posterior.
Generation time estimates. See here for details: https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/generation-time.R
generation_times
generation_times
A data.table
of summarising the distribution
<dist_spec>
get_distribution(x, id = NULL)
get_distribution(x, id = NULL)
x |
A |
id |
Integer; the id of the distribution to use (if x is a composite
distribution). If |
A character string naming the distribution (or "nonparametric")
dist <- Gamma(shape = 3, rate = 2, max = 10) get_distribution(dist)
dist <- Gamma(shape = 3, rate = 2, max = 10) get_distribution(dist)
get_parameters(x, id = NULL)
get_parameters(x, id = NULL)
x |
A |
id |
Integer; the id of the distribution to use (if x is a composite
distribution). If |
A list of parameters of the distribution.
dist <- Gamma(shape = 3, rate = 2) get_parameters(dist)
dist <- Gamma(shape = 3, rate = 2) get_parameters(dist)
get_pmf(x, id = NULL)
get_pmf(x, id = NULL)
x |
A |
id |
Integer; the id of the distribution to use (if x is a composite
distribution). If |
The pmf of the distribution
dist <- discretise(Gamma(shape = 3, rate = 2, max = 10)) get_pmf(dist)
dist <- discretise(Gamma(shape = 3, rate = 2, max = 10)) get_pmf(dist)
Summarises results across regions either from input or from disk. See the examples for details.
get_regional_results( regional_output, results_dir, date, samples = TRUE, forecast = FALSE )
get_regional_results( regional_output, results_dir, date, samples = TRUE, forecast = FALSE )
regional_output |
A list of output as produced by |
results_dir |
A character string indicating the folder containing the
|
date |
A Character string (in the format "yyyy-mm-dd") indicating the date to extract data for. Defaults to "latest" which finds the latest results available. |
samples |
Logical, defaults to |
forecast |
Logical, defaults to |
A list of estimates, forecasts and estimated cases by date of report.
# get example multiregion estimates regional_out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_regional_epinow.rds" )) # from output results <- get_regional_results(regional_out$regional, samples = FALSE)
# get example multiregion estimates regional_out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_regional_epinow.rds" )) # from output results <- get_regional_results(regional_out$regional, samples = FALSE)
Defines a list specifying the structure of the approximate Gaussian process. Custom settings can be supplied which override the defaults.
gp_opts( basis_prop = 0.2, boundary_scale = 1.5, ls_mean = 21, ls_sd = 7, ls_min = 0, ls_max = 60, alpha_mean = 0, alpha_sd = 0.05, kernel = c("matern", "se", "ou", "periodic"), matern_order = 3/2, matern_type, w0 = 1 )
gp_opts( basis_prop = 0.2, boundary_scale = 1.5, ls_mean = 21, ls_sd = 7, ls_min = 0, ls_max = 60, alpha_mean = 0, alpha_sd = 0.05, kernel = c("matern", "se", "ou", "periodic"), matern_order = 3/2, matern_type, w0 = 1 )
basis_prop |
Numeric, the proportion of time points to use as basis functions. Defaults to 0.2. Decreasing this value results in a decrease in accuracy but a faster compute time (with increasing it having the first effect). In general smaller posterior length scales require a higher proportion of basis functions. See (Riutort-Mayol et al. 2020 https://arxiv.org/abs/2004.11408) for advice on updating this default. |
boundary_scale |
Numeric, defaults to 1.5. Boundary scale of the approximate Gaussian process. See (Riutort-Mayol et al. 2020 https://arxiv.org/abs/2004.11408) for advice on updating this default. |
ls_mean |
Numeric, defaults to 21 days. The mean of the lognormal length scale. |
ls_sd |
Numeric, defaults to 7 days. The standard deviation of the log
normal length scale. If |
ls_min |
Numeric, defaults to 0. The minimum value of the length scale. |
ls_max |
Numeric, defaults to 60. The maximum value of the length
scale. Updated in |
alpha_mean |
Numeric, defaults to 0. The mean of the magnitude parameter of the Gaussian process kernel. Should be approximately the expected standard deviation of the Gaussian process (logged Rt in case of the renewal model, logged infections in case of the nonmechanistic model). |
alpha_sd |
Numeric, defaults to 0.05. The standard deviation of the
magnitude parameter of the Gaussian process kernel. Can be tuned to adjust
how far alpha is allowed to deviate form its prior mean ( |
kernel |
Character string, the type of kernel required. Currently supporting the Matern kernel ("matern"), squared exponential kernel ("se"), periodic kernel, Ornstein-Uhlenbeck #' kernel ("ou"), and the periodic kernel ("periodic"). |
matern_order |
Numeric, defaults to 3/2. Order of Matérn Kernel to use.
Common choices are 1/2, 3/2, and 5/2. If |
matern_type |
Deprecated; Numeric, defaults to 3/2. Order of Matérn Kernel to use. Currently, the orders 1/2, 3/2, 5/2 and Inf are supported. |
w0 |
Numeric, defaults to 1.0. Fundamental frequency for periodic
kernel. They are only used if |
A <gp_opts>
object of settings defining the Gaussian process
# default settings gp_opts() # add a custom length scale gp_opts(ls_mean = 4) # use linear kernel gp_opts(kernel = "periodic")
# default settings gp_opts() # add a custom length scale gp_opts(ls_mean = 4) # use linear kernel gp_opts(kernel = "periodic")
See here # nolint for justification. Now handled internally by stan so may be removed in future updates if no user demand.
growth_to_R(r, gamma_mean, gamma_sd)
growth_to_R(r, gamma_mean, gamma_sd)
r |
Numeric, rate of growth estimates. |
gamma_mean |
Numeric, mean of the gamma distribution |
gamma_sd |
Numeric, standard deviation of the gamma distribution . |
Numeric vector of reproduction number estimates
growth_to_R(0.2, 4, 1)
growth_to_R(0.2, 4, 1)
Returns generation time parameters in a format for lower level model use.
gt_opts( dist = Fixed(1), ..., disease, source, max = 14, fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE ) generation_time_opts( dist = Fixed(1), ..., disease, source, max = 14, fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE )
gt_opts( dist = Fixed(1), ..., disease, source, max = 14, fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE ) generation_time_opts( dist = Fixed(1), ..., disease, source, max = 14, fixed = FALSE, default_cdf_cutoff = 0.001, weight_prior = TRUE )
dist |
A delay distribution or series of delay distributions . If no distribution is given a fixed generation time of 1 will be assumed. If passing a nonparametric distribution the first element should be zero (see Details section) |
... |
deprecated; use |
disease |
deprecated; use |
source |
deprecated; use |
max |
deprecated; use |
fixed |
deprecated; use |
default_cdf_cutoff |
Numeric; default CDF cutoff to be used if an
unconstrained distribution is passed as |
weight_prior |
Logical; if TRUE (default), any priors given in |
Because the discretised renewal equation used in the package does not support zero generation times, any distribution specified here will be left-truncated at one, i.e. the first element of the nonparametric or discretised probability distribution used for the generation time is set to zero and the resulting distribution renormalised.
A <generation_time_opts>
object summarising the input delay
distributions.
convert_to_logmean()
convert_to_logsd()
bootstrapped_dist_fit()
Gamma()
LogNormal()
Fixed()
# default settings with a fixed generation time of 1 generation_time_opts() # A fixed gamma distributed generation time generation_time_opts(Gamma(mean = 3, sd = 2, max = 14)) # An uncertain gamma distributed generation time generation_time_opts( Gamma( mean = Normal(mean = 3, sd = 1), sd = Normal(mean = 2, sd = 0.5), max = 14 ) ) # An example generation time gt_opts(example_generation_time)
# default settings with a fixed generation time of 1 generation_time_opts() # A fixed gamma distributed generation time generation_time_opts(Gamma(mean = 3, sd = 2, max = 14)) # An uncertain gamma distributed generation time generation_time_opts( Gamma( mean = Normal(mean = 3, sd = 1), sd = Normal(mean = 2, sd = 0.5), max = 14 ) ) # An example generation time gt_opts(example_generation_time)
Incubation period estimates. See here for details: https://github.com/epiforecasts/EpiNow2/blob/main/data-raw/incubation-period.R # nolint
incubation_periods
incubation_periods
A data.table
of summarising the distribution
## S3 method for class 'dist_spec' is_constrained(x, ...)
## S3 method for class 'dist_spec' is_constrained(x, ...)
x |
A |
... |
ignored |
Logical; TRUE if x
is constrained
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) # both distributions are constrained and therefore so is the sum is_constrained(dist1 + dist2)
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) # both distributions are constrained and therefore so is the sum is_constrained(dist1 + dist2)
Combines a list of values into formatted credible intervals.
make_conf(value, CrI = 90, reverse = FALSE)
make_conf(value, CrI = 90, reverse = FALSE)
value |
List of value to map into a string. Requires,
|
CrI |
Numeric, credible interval to report. Defaults to 90. |
reverse |
Logical, defaults to FALSE. Should the reported credible interval be switched. |
A character vector formatted for reporting
value <- list(median = 2, lower_90 = 1, upper_90 = 3) make_conf(value)
value <- list(median = 2, lower_90 = 1, upper_90 = 3) make_conf(value)
Categorises a numeric variable into "Increasing" (< 0.05), "Likely increasing" (<0.4), "Stable" (< 0.6), "Likely decreasing" (< 0.95), "Decreasing" (<= 1)
map_prob_change(var)
map_prob_change(var)
var |
Numeric variable to be categorised |
A character variable.
var <- seq(0.01, 1, 0.01) var map_prob_change(var)
var <- seq(0.01, 1, 0.01) var map_prob_change(var)
This works out the maximum of all the (parametric / nonparametric) delay distributions combined in the passed <dist_spec> (ignoring any uncertainty in parameters)
## S3 method for class 'dist_spec' max(x, ...)
## S3 method for class 'dist_spec' max(x, ...)
x |
The <dist_spec> to use |
... |
Not used |
A vector of means.
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) max(dist1) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) max(dist2) # The max the sum of two distributions max(dist1 + dist2)
# A fixed gamma distribution with mean 5 and sd 1. dist1 <- Gamma(mean = 5, sd = 1, max = 20) max(dist1) # An uncertain lognormal distribution with mean 3 and sd 2 dist2 <- LogNormal(mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20) max(dist2) # The max the sum of two distributions max(dist1 + dist2)
This works out the mean of all the (parametric / nonparametric) delay distributions combined in the passed <dist_spec>.
## S3 method for class 'dist_spec' mean(x, ..., ignore_uncertainty = FALSE)
## S3 method for class 'dist_spec' mean(x, ..., ignore_uncertainty = FALSE)
x |
The |
... |
Not used |
ignore_uncertainty |
Logical; whether to ignore any uncertainty in parameters. If set to FALSE (the default) then the mean of any uncertain parameters will be returned as NA. |
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 5, sd = 1, max = 20) mean(dist1) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) mean(dist2) # The mean of the sum of two distributions mean(dist1 + dist2)
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 5, sd = 1, max = 20) mean(dist1) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) mean(dist2) # The mean of the sum of two distributions mean(dist1 + dist2)
dist_spec
given parameters and a
distribution.
This will convert all parameters to natural parameters before generating
a dist_spec
. If they have uncertainty this will be done using sampling.
new_dist_spec(params, distribution, max = Inf, cdf_cutoff = 0)
new_dist_spec(params, distribution, max = Inf, cdf_cutoff = 0)
params |
Parameters of the distribution (including |
distribution |
Character; the distribution to use. |
max |
Numeric, maximum value of the distribution. The distribution will
be truncated at this value. Default: |
cdf_cutoff |
Numeric; the desired CDF cutoff. Any part of the
cumulative distribution function beyond 1 minus the value of this argument is
removed. Default: |
A dist_spec
of the given specification.
new_dist_spec( params = list(mean = 2, sd = 1), distribution = "normal" )
new_dist_spec( params = list(mean = 2, sd = 1), distribution = "normal" )
Defines a list specifying the structure of the observation model. Custom settings can be supplied which override the defaults.
obs_opts( family = c("negbin", "poisson"), phi = list(mean = 0, sd = 0.25), weight = 1, week_effect = TRUE, week_length = 7, scale = 1, na = c("missing", "accumulate"), likelihood = TRUE, return_likelihood = FALSE )
obs_opts( family = c("negbin", "poisson"), phi = list(mean = 0, sd = 0.25), weight = 1, week_effect = TRUE, week_length = 7, scale = 1, na = c("missing", "accumulate"), likelihood = TRUE, return_likelihood = FALSE )
family |
Character string defining the observation model. Options are Negative binomial ("negbin"), the default, and Poisson. |
phi |
Overdispersion parameter of the reporting process, used only if
|
weight |
Numeric, defaults to 1. Weight to give the observed data in the log density. |
week_effect |
Logical defaulting to |
week_length |
Numeric assumed length of the week in days, defaulting to 7 days. This can be modified if data aggregated over a period other than a week or if data has a non-weekly periodicity. |
scale |
Scaling factor to be applied to map latent infections (convolved
to date of report). Can be supplied either as a single numeric value (fixed
scale) or a list with numeric elements mean ( |
na |
Character. Options are "missing" (the default) and "accumulate". This determines how NA values in the data are interpreted. If set to "missing", any NA values in the observation data set will be interpreted as missing and skipped in the likelihood. If set to "accumulate", modelled observations will be accumulated and added to the next non-NA data point. This can be used to model incidence data that is reported at less than daily intervals. If set to "accumulate", the first data point is not included in the likelihood but used only to reset modelled observations to zero. |
likelihood |
Logical, defaults to |
return_likelihood |
Logical, defaults to |
An <obs_opts>
object of observation model settings.
# default settings obs_opts() # Turn off day of the week effect obs_opts(week_effect = TRUE) # Scale reported data obs_opts(scale = list(mean = 0.2, sd = 0.02))
# default settings obs_opts() # Turn off day of the week effect obs_opts(week_effect = TRUE) # Scale reported data obs_opts(scale = list(mean = 0.2, sd = 0.02))
Define a list of _opts()
to pass to regional_epinow()
_opts()
accepting
arguments. This is useful when different settings are needed between regions
within a single regional_epinow()
call. Using opts_list()
the defaults
can be applied to all regions present with an override passed to regions as
necessary (either within opts_list()
or externally).
opts_list(opts, reported_cases, ...)
opts_list(opts, reported_cases, ...)
opts |
An |
reported_cases |
A data frame containing a |
... |
Optional override for region defaults. See the examples for use case. |
A named list of options per region which can be passed to the _opt
accepting arguments of regional_epinow
.
# uses example case vector cases <- example_confirmed[1:40] cases <- data.table::rbindlist(list( data.table::copy(cases)[, region := "testland"], cases[, region := "realland"] )) # default settings opts_list(rt_opts(), cases) # add a weekly random walk in realland opts_list(rt_opts(), cases, realland = rt_opts(rw = 7)) # add a weekly random walk externally rt <- opts_list(rt_opts(), cases) rt$realland$rw <- 7 rt
# uses example case vector cases <- example_confirmed[1:40] cases <- data.table::rbindlist(list( data.table::copy(cases)[, region := "testland"], cases[, region := "realland"] )) # default settings opts_list(rt_opts(), cases) # add a weekly random walk in realland opts_list(rt_opts(), cases, realland = rt_opts(rw = 7)) # add a weekly random walk externally rt <- opts_list(rt_opts(), cases) rt$realland$rw <- 7 rt
Adds lineranges for user specified credible intervals
plot_CrIs(plot, CrIs, alpha, linewidth)
plot_CrIs(plot, CrIs, alpha, linewidth)
plot |
A |
CrIs |
Numeric list of credible intervals present in the data. As
produced by |
alpha |
Numeric, overall alpha of the target line range |
linewidth |
Numeric, line width of the default line range. |
A {ggplot2}
plot.
Allows users to plot the output from estimate_infections()
easily.
In future releases it may be depreciated in favour of increasing the
functionality of the S3 plot methods.
plot_estimates( estimate, reported, ylab, hline, obs_as_col = TRUE, max_plot = 10, estimate_type = c("Estimate", "Estimate based on partial data", "Forecast") )
plot_estimates( estimate, reported, ylab, hline, obs_as_col = TRUE, max_plot = 10, estimate_type = c("Estimate", "Estimate based on partial data", "Forecast") )
estimate |
A |
reported |
A |
ylab |
Character string. Title for the plot y axis. |
hline |
Numeric, if supplied gives the horizontal intercept for a indicator line. |
obs_as_col |
Logical, defaults to |
max_plot |
Numeric, defaults to 10. A multiplicative upper bound on the\ number of cases shown on the plot. Based on the maximum number of reported cases. |
estimate_type |
Character vector indicating the type of data to plot. Default to all types with supported options being: "Estimate", "Estimate based on partial data", and "Forecast". |
A ggplot2
object
# get example model results out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_estimate_infections.rds" )) # plot infections plot_estimates( estimate = out$summarised[variable == "infections"], reported = out$observations, ylab = "Cases", max_plot = 2 ) + ggplot2::facet_wrap(~type, scales = "free_y") # plot reported cases estimated via Rt plot_estimates( estimate = out$summarised[variable == "reported_cases"], reported = out$observations, ylab = "Cases" ) # plot Rt estimates plot_estimates( estimate = out$summarised[variable == "R"], ylab = "Effective Reproduction No.", hline = 1 ) #' # plot Rt estimates without forecasts plot_estimates( estimate = out$summarised[variable == "R"], ylab = "Effective Reproduction No.", hline = 1, estimate_type = "Estimate" )
# get example model results out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_estimate_infections.rds" )) # plot infections plot_estimates( estimate = out$summarised[variable == "infections"], reported = out$observations, ylab = "Cases", max_plot = 2 ) + ggplot2::facet_wrap(~type, scales = "free_y") # plot reported cases estimated via Rt plot_estimates( estimate = out$summarised[variable == "reported_cases"], reported = out$observations, ylab = "Cases" ) # plot Rt estimates plot_estimates( estimate = out$summarised[variable == "R"], ylab = "Effective Reproduction No.", hline = 1 ) #' # plot Rt estimates without forecasts plot_estimates( estimate = out$summarised[variable == "R"], ylab = "Effective Reproduction No.", hline = 1, estimate_type = "Estimate" )
Used to return a summary plot across regions (using results generated by
summarise_results()
).
May be depreciated in later releases in favour of enhanced S3 methods.
plot_summary(summary_results, x_lab = "Region", log_cases = FALSE, max_cases)
plot_summary(summary_results, x_lab = "Region", log_cases = FALSE, max_cases)
summary_results |
A data.table as returned by |
x_lab |
A character string giving the label for the x axis, defaults to region. |
log_cases |
Logical, should cases be shown on a logged scale. Defaults
to |
max_cases |
Numeric, no default. The maximum number of cases to plot. |
A {ggplot2}
object
This function takes a <dist_spec>
object and plots its probability mass
function (PMF) and cumulative distribution function (CDF) using {ggplot2}
.
## S3 method for class 'dist_spec' plot(x, samples = 50L, res = 1, cumulative = TRUE, ...)
## S3 method for class 'dist_spec' plot(x, samples = 50L, res = 1, cumulative = TRUE, ...)
x |
A |
samples |
Integer; Number of samples to generate for distributions with uncertain parameters (default: 50). |
res |
Numeric; Resolution of the PMF and CDF (default: 1, i.e. integer discretisation). |
cumulative |
Logical; whether to plot the cumulative distribution in addition to the probability mass function |
... |
ignored |
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 1.6, sd = 0.5, max = 20) # Plot discretised distribution with 1 day discretisation window plot(dist1) # Plot discretised distribution with 0.01 day discretisation window plot(dist1, res = 0.01, cumulative = FALSE) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) plot(dist2) # Multiple distributions with 0.1 discretisation window and do not plot the # cumulative distribution plot(dist1 + dist2, res = 0.1, cumulative = FALSE)
# A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 1.6, sd = 0.5, max = 20) # Plot discretised distribution with 1 day discretisation window plot(dist1) # Plot discretised distribution with 0.01 day discretisation window plot(dist1, res = 0.01, cumulative = FALSE) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) plot(dist2) # Multiple distributions with 0.1 discretisation window and do not plot the # cumulative distribution plot(dist1 + dist2, res = 0.1, cumulative = FALSE)
plot
method for class <epinow>
.
## S3 method for class 'epinow' plot(x, type = "summary", ...)
## S3 method for class 'epinow' plot(x, type = "summary", ...)
x |
A list of output as produced by |
type |
A character vector indicating the name of the plot to return. Defaults to "summary" with supported options being "infections", "reports", "R", "growth_rate", "summary", "all". If "all" is supplied all plots are generated. |
... |
Pass additional arguments to report_plots |
List of plots as produced by report_plots()
plot plot.estimate_infections report_plots estimate_infections
plot
method for class <estimate_infections>
.
## S3 method for class 'estimate_infections' plot( x, type = c("summary", "infections", "reports", "R", "growth_rate", "all"), ... )
## S3 method for class 'estimate_infections' plot( x, type = c("summary", "infections", "reports", "R", "growth_rate", "all"), ... )
x |
A list of output as produced by |
type |
A character vector indicating the name of the plot to return. Defaults to "summary" with supported options being "infections", "reports", "R", "growth_rate", "summary", "all". If "all" is supplied all plots are generated. |
... |
Pass additional arguments to report_plots |
List of plots as produced by report_plots()
plot report_plots estimate_infections
plot
method for class "estimate_secondary".
## S3 method for class 'estimate_secondary' plot(x, primary = FALSE, from = NULL, to = NULL, new_obs = NULL, ...)
## S3 method for class 'estimate_secondary' plot(x, primary = FALSE, from = NULL, to = NULL, new_obs = NULL, ...)
x |
A list of output as produced by |
primary |
Logical, defaults to |
from |
Date object indicating when to plot from. |
to |
Date object indicating when to plot up to. |
new_obs |
A |
... |
Pass additional arguments to plot function. Not currently in use. |
A ggplot
object.
plot estimate_secondary
plot()
method for class <estimate_truncation>
. Returns
a plot faceted over each dataset used in fitting with the latest
observations as columns, the data observed at the time (and so truncated)
as dots and the truncation adjusted estimates as a ribbon.
## S3 method for class 'estimate_truncation' plot(x, ...)
## S3 method for class 'estimate_truncation' plot(x, ...)
x |
A list of output as produced by |
... |
Pass additional arguments to plot function. Not currently in use. |
ggplot2
object
plot estimate_truncation
This displays the parameters of the uncertain and probability mass functions of fixed delay distributions combined in the passed <dist_spec>.
## S3 method for class 'dist_spec' print(x, ...)
## S3 method for class 'dist_spec' print(x, ...)
x |
The |
... |
Not used |
invisible
#' # A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 1.5, sd = 0.5, max = 20) print(dist1) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) print(dist2)
#' # A fixed lognormal distribution with mean 5 and sd 1. dist1 <- LogNormal(mean = 1.5, sd = 0.5, max = 20) print(dist1) # An uncertain gamma distribution with mean 3 and sd 2 dist2 <- Gamma( mean = Normal(3, 0.5), sd = Normal(2, 0.5), max = 20 ) print(dist2)
See here # nolint for justification. Now handled internally by stan so may be removed in future updates if no user demand.
R_to_growth(R, gamma_mean, gamma_sd)
R_to_growth(R, gamma_mean, gamma_sd)
R |
Numeric, Reproduction number estimates |
gamma_mean |
Numeric, mean of the gamma distribution |
gamma_sd |
Numeric, standard deviation of the gamma distribution . |
Numeric vector of reproduction number estimates
R_to_growth(2.18, 4, 1)
R_to_growth(2.18, 4, 1)
Efficiently runs epinow()
across multiple regions in an efficient manner
and conducts basic data checks and cleaning such as removing regions with
fewer than non_zero_points
as these are unlikely to produce reasonable
results whilst consuming significant resources. See the documentation for
epinow()
for further information.
By default all arguments supporting input from _opts()
functions are
shared across regions (including delays, truncation, Rt settings, stan
settings, and gaussian process settings). Region specific settings are
supported by passing a named list of _opts()
calls (with an entry per
region) to the relevant argument. A helper function (opts_list()
) is
available to facilitate building this list.
Regions can be estimated in parallel using the {future}
package (see
setup_future()
). The progress of producing estimates across multiple
regions can be tracked using the {progressr}
package. Modify this behaviour
using progressr::handlers()
and enable it in batch by setting
R_PROGRESSR_ENABLE=TRUE
as an environment variable.
regional_epinow( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), target_folder = NULL, target_date, non_zero_points = 2, output = c("regions", "summary", "samples", "plots", "latest"), return_output = is.null(target_folder), summary_args = list(), verbose = FALSE, logs = tempdir(check = TRUE), ..., reported_cases )
regional_epinow( data, generation_time = gt_opts(), delays = delay_opts(), truncation = trunc_opts(), rt = rt_opts(), backcalc = backcalc_opts(), gp = gp_opts(), obs = obs_opts(), stan = stan_opts(), horizon = 7, CrIs = c(0.2, 0.5, 0.9), target_folder = NULL, target_date, non_zero_points = 2, output = c("regions", "summary", "samples", "plots", "latest"), return_output = is.null(target_folder), summary_args = list(), verbose = FALSE, logs = tempdir(check = TRUE), ..., reported_cases )
data |
A |
generation_time |
A call to |
delays |
A call to |
truncation |
A call to |
rt |
A list of options as generated by |
backcalc |
A list of options as generated by |
gp |
A list of options as generated by |
obs |
A list of options as generated by |
stan |
A list of stan options as generated by |
horizon |
Numeric, defaults to 7. Number of days into the future to forecast. |
CrIs |
Numeric vector of credible intervals to calculate. |
target_folder |
Character string specifying where to save results (will create if not present). |
target_date |
Date, defaults to maximum found in the data if not specified. |
non_zero_points |
Numeric, the minimum number of time points with non-zero cases in a region required for that region to be evaluated. Defaults to 7. |
output |
A character vector of optional output to return. Supported
options are the individual regional estimates ("regions"), samples
("samples"), plots ("plots"), copying the individual region dated folder into
a latest folder (if |
return_output |
Logical, defaults to FALSE. Should output be returned, this automatically updates to TRUE if no directory for saving is specified. |
summary_args |
A list of arguments passed to |
verbose |
Logical defaults to FALSE. Outputs verbose progress messages
to the console from |
logs |
Character path indicating the target folder in which to store log
information. Defaults to the temporary directory if not specified. Default
logging can be disabled if |
... |
Pass additional arguments to |
reported_cases |
Deprecated; use |
A list of output stratified at the top level into regional output and across region output summary output
epinow()
estimate_infections()
setup_future()
regional_summary()
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # uses example case vector cases <- example_confirmed[1:60] cases <- data.table::rbindlist(list( data.table::copy(cases)[, region := "testland"], cases[, region := "realland"] )) # run epinow across multiple regions and generate summaries # samples and warmup have been reduced for this example # for more examples, see the "estimate_infections examples" vignette def <- regional_epinow( data = cases, generation_time = gt_opts(example_generation_time), delays = delay_opts(example_incubation_period + example_reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.2)), stan = stan_opts( samples = 100, warmup = 200 ), verbose = interactive() ) options(old_opts)
# set number of cores to use old_opts <- options() options(mc.cores = ifelse(interactive(), 4, 1)) # uses example case vector cases <- example_confirmed[1:60] cases <- data.table::rbindlist(list( data.table::copy(cases)[, region := "testland"], cases[, region := "realland"] )) # run epinow across multiple regions and generate summaries # samples and warmup have been reduced for this example # for more examples, see the "estimate_infections examples" vignette def <- regional_epinow( data = cases, generation_time = gt_opts(example_generation_time), delays = delay_opts(example_incubation_period + example_reporting_delay), rt = rt_opts(prior = list(mean = 2, sd = 0.2)), stan = stan_opts( samples = 100, warmup = 200 ), verbose = interactive() ) options(old_opts)
Used to produce summary output either internally in regional_epinow
or
externally.
regional_summary( regional_output = NULL, data, results_dir = NULL, summary_dir = NULL, target_date = NULL, region_scale = "Region", all_regions = TRUE, return_output = is.null(summary_dir), plot = TRUE, max_plot = 10, ... )
regional_summary( regional_output = NULL, data, results_dir = NULL, summary_dir = NULL, target_date = NULL, region_scale = "Region", all_regions = TRUE, return_output = is.null(summary_dir), plot = TRUE, max_plot = 10, ... )
regional_output |
A list of output as produced by |
data |
A |
results_dir |
An optional character string indicating the location of the results directory to extract results from. |
summary_dir |
A character string giving the directory in which to store summary of results. |
target_date |
A character string giving the target date for which to extract results (in the format "yyyy-mm-dd"). Defaults to latest available estimates. |
region_scale |
A character string indicating the name to give the regions being summarised. |
all_regions |
Logical, defaults to |
return_output |
Logical, defaults to FALSE. Should output be returned, this automatically updates to TRUE if no directory for saving is specified. |
plot |
Logical, defaults to |
max_plot |
Numeric, defaults to 10. A multiplicative upper bound on the\ number of cases shown on the plot. Based on the maximum number of reported cases. |
... |
Additional arguments passed to |
A list of summary measures and plots
regional_epinow
# get example output from regional_epinow model regional_out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_regional_epinow.rds" )) regional_summary( regional_output = regional_out$regional, data = regional_out$summary$reported_cases )
# get example output from regional_epinow model regional_out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_regional_epinow.rds" )) regional_summary( regional_output = regional_out$regional, data = regional_out$summary$reported_cases )
Returns key summary plots for estimates. May be depreciated in later releases as current S3 methods are enhanced.
report_plots(summarised_estimates, reported, target_folder = NULL, ...)
report_plots(summarised_estimates, reported, target_folder = NULL, ...)
summarised_estimates |
A data.table of summarised estimates containing the following variables: variable, median, bottom, and top. It should also contain the following estimates: R, infections, reported_cases_rt, and r (rate of growth). |
reported |
A |
target_folder |
Character string specifying where to save results (will create if not present). |
... |
Additional arguments passed to |
A named list of ggplot2
objects, list(infections, reports, R, growth_rate, summary)
, which correspond to a summary combination (last
item) and for the leading items.
plot_estimates()
of
summarised_estimates[variable == "infections"]
,
summarised_estimates[variable == "reported_cases"]
,
summarised_estimates[variable == "R"]
, and
summarised_estimates[variable == "growth_rate"]
, respectively.
# get example output form estimate_infections out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_estimate_infections.rds" )) # plot infections plots <- report_plots( summarised_estimates = out$summarised, reported = out$observations ) plots
# get example output form estimate_infections out <- readRDS(system.file( package = "EpiNow2", "extdata", "example_estimate_infections.rds" )) # plot infections plots <- report_plots( summarised_estimates = out$summarised, reported = out$observations ) plots
Creates a snapshot summary of estimates. May be removed in later releases as S3 methods are enhanced.
report_summary( summarised_estimates, rt_samples, target_folder = NULL, return_numeric = FALSE )
report_summary( summarised_estimates, rt_samples, target_folder = NULL, return_numeric = FALSE )
summarised_estimates |
A data.table of summarised estimates containing the following variables: variable, median, bottom, and top. It should contain the following estimates: R, infections, and r (rate of growth). |
rt_samples |
A data.table containing Rt samples with the following variables: sample and value. |
target_folder |
Character string specifying where to save results (will create if not present). |
return_numeric |
Should numeric summary information be returned. |
A data.table containing formatted and numeric summary measures
Deprecated; specify options in stan_opts()
instead.
rstan_opts(object = NULL, samples = 2000, method = c("sampling", "vb"), ...)
rstan_opts(object = NULL, samples = 2000, method = c("sampling", "vb"), ...)
object |
Stan model object. By default uses the compiled package default. |
samples |
Numeric, default 2000. Overall number of posterior samples. When using multiple chains iterations per chain is samples / chains. |
method |
A character string, defaulting to sampling. Currently supports
|
... |
Additional parameters to pass underlying option functions. |
A list of arguments to pass to the appropriate rstan functions.
rstan_sampling_opts()
rstan_vb_opts()
Deprecated; use stan_sampling_opts()
instead.
rstan_sampling_opts( cores = getOption("mc.cores", 1L), warmup = 250, samples = 2000, chains = 4, control = list(), save_warmup = FALSE, seed = as.integer(runif(1, 1, 1e+08)), future = FALSE, max_execution_time = Inf, ... )
rstan_sampling_opts( cores = getOption("mc.cores", 1L), warmup = 250, samples = 2000, chains = 4, control = list(), save_warmup = FALSE, seed = as.integer(runif(1, 1, 1e+08)), future = FALSE, max_execution_time = Inf, ... )
cores |
Number of cores to use when executing the chains in parallel, which defaults to 1 but it is recommended to set the mc.cores option to be as many processors as the hardware and RAM allow (up to the number of chains). |
warmup |
Numeric, defaults to 250. Number of warmup samples per chain. |
samples |
Numeric, default 2000. Overall number of posterior samples. When using multiple chains iterations per chain is samples / chains. |
chains |
Numeric, defaults to 4. Number of MCMC chains to use. |
control |
List, defaults to empty. control parameters to pass to
underlying |
save_warmup |
Logical, defaults to FALSE. Should warmup progress be saved. |
seed |
Numeric, defaults uniform random number between 1 and 1e8. Seed of sampling process. |
future |
Logical, defaults to |
max_execution_time |
Numeric, defaults to Inf (seconds). If set wil kill off processing of each chain if not finished within the specified timeout. When more than 2 chains finish successfully estimates will still be returned. If less than 2 chains return within the allowed time then estimation will fail with an informative error. |
... |
Additional parameters to pass to |
A list of arguments to pass to rstan::sampling()
.
Deprecated; use stan_vb_opts()
instead.
rstan_vb_opts(samples = 2000, trials = 10, iter = 10000, ...)
rstan_vb_opts(samples = 2000, trials = 10, iter = 10000, ...)
samples |
Numeric, default 2000. Overall number of approximate posterior samples. |
trials |
Numeric, defaults to 10. Number of attempts to use rstan::vb()] before failing. |
iter |
Numeric, defaulting to 10000. Number of iterations to use in
|
... |
Additional parameters to pass to |
A list of arguments to pass to rstan::vb()
.
Defines a list specifying the optional arguments for the time-varying reproduction number. Custom settings can be supplied which override the defaults.
rt_opts( prior = list(mean = 1, sd = 1), use_rt = TRUE, rw = 0, use_breakpoints = TRUE, future = "latest", gp_on = c("R_t-1", "R0"), pop = 0 )
rt_opts( prior = list(mean = 1, sd = 1), use_rt = TRUE, rw = 0, use_breakpoints = TRUE, future = "latest", gp_on = c("R_t-1", "R0"), pop = 0 )
prior |
List containing named numeric elements "mean" and "sd". The mean and standard deviation of the log normal Rt prior. Defaults to mean of 1 and standard deviation of 1. |
use_rt |
Logical, defaults to |
rw |
Numeric step size of the random walk, defaults to 0. To specify a
weekly random walk set |
use_breakpoints |
Logical, defaults to |
future |
A character string or integer. This argument indicates how to set future Rt values. Supported options are to project using the Rt model ("project"), to use the latest estimate based on partial data ("latest"), to use the latest estimate based on data that is over 50% complete ("estimate"). If an integer is supplied then the Rt estimate from this many days into the future (or past if negative) past will be used forwards in time. |
gp_on |
Character string, defaulting to "R_t-1". Indicates how the Gaussian process, if in use, should be applied to Rt. Currently supported options are applying the Gaussian process to the last estimated Rt (i.e Rt = Rt-1 * GP), and applying the Gaussian process to a global mean (i.e Rt = R0 * GP). Both should produced comparable results when data is not sparse but the method relying on a global mean will revert to this for real time estimates, which may not be desirable. |
pop |
Integer, defaults to 0. Susceptible population initially present. Used to adjust Rt estimates when otherwise fixed based on the proportion of the population that is susceptible. When set to 0 no population adjustment is done. |
An <rt_opts>
object with settings defining the time-varying
reproduction number.
# default settings rt_opts() # add a custom length scale rt_opts(prior = list(mean = 2, sd = 1)) # add a weekly random walk rt_opts(rw = 7)
# default settings rt_opts() # add a custom length scale rt_opts(prior = list(mean = 2, sd = 1)) # add a weekly random walk rt_opts(rw = 7)
Internal function that handles calling epinow()
. Future work will extend
this function to better handle stan logs and allow the user to modify
settings between regions.
run_region( target_region, generation_time, delays, truncation, rt, backcalc, gp, obs, stan, horizon, CrIs, data, target_folder, target_date, return_output, output, complete_logger, verbose, progress_fn = NULL, ... )
run_region( target_region, generation_time, delays, truncation, rt, backcalc, gp, obs, stan, horizon, CrIs, data, target_folder, target_date, return_output, output, complete_logger, verbose, progress_fn = NULL, ... )
target_region |
Character string indicating the region being evaluated |
generation_time |
A call to |
delays |
A call to |
truncation |
A call to |
rt |
A list of options as generated by |
backcalc |
A list of options as generated by |
gp |
A list of options as generated by |
obs |
A list of options as generated by |
stan |
A list of stan options as generated by |
horizon |
Numeric, defaults to 7. Number of days into the future to forecast. |
CrIs |
Numeric vector of credible intervals to calculate. |
data |
A |
target_folder |
Character string specifying where to save results (will create if not present). |
target_date |
Date, defaults to maximum found in the data if not specified. |
return_output |
Logical, defaults to FALSE. Should output be returned, this automatically updates to TRUE if no directory for saving is specified. |
output |
A character vector of optional output to return. Supported
options are the individual regional estimates ("regions"), samples
("samples"), plots ("plots"), copying the individual region dated folder into
a latest folder (if |
complete_logger |
Character string indicating the logger to output the completion of estimation to. |
verbose |
Logical defaults to FALSE. Outputs verbose progress messages
to the console from |
progress_fn |
Function as returned by |
... |
Pass additional arguments to |
A list of processed output as produced by process_region()
Returns a list of options defining the secondary model used in
estimate_secondary()
. This model is a combination of a convolution of
previously observed primary reports combined with current primary reports
(either additive or subtractive). It can optionally be cumulative. See the
documentation of type
for sensible options to cover most use cases and the
returned values of secondary_opts()
for all currently supported options.
secondary_opts(type = c("incidence", "prevalence"), ...)
secondary_opts(type = c("incidence", "prevalence"), ...)
type |
A character string indicating the type of observation the secondary reports are. Options include:
|
... |
Overwrite options defined by type. See the returned values for all options that can be passed. |
A <secondary_opts>
object of binary options summarising secondary
model used in estimate_secondary()
. Options returned are cumulative
(should the secondary report be cumulative), historic
(should a
convolution of primary reported cases be used to predict secondary reported
cases), primary_hist_additive
(should the historic convolution of primary
reported cases be additive or subtractive), current
(should currently
observed primary reported cases contribute to current secondary reported
cases), primary_current_additive
(should current primary reported cases be
additive or subtractive).
# incidence model secondary_opts("incidence") # prevalence model secondary_opts("prevalence")
# incidence model secondary_opts("incidence") # prevalence model secondary_opts("prevalence")
Sets up default logging. Usage of logging is currently being explored as the current setup cannot log stan errors or progress.
setup_default_logging( logs = tempdir(check = TRUE), mirror_epinow = FALSE, target_date = NULL )
setup_default_logging( logs = tempdir(check = TRUE), mirror_epinow = FALSE, target_date = NULL )
logs |
Character path indicating the target folder in which to store log
information. Defaults to the temporary directory if not specified. Default
logging can be disabled if |
mirror_epinow |
Logical, defaults to FALSE. Should internal logging be
returned from |
target_date |
Date, defaults to maximum found in the data if not specified. |
No return value, called for side effects
setup_default_logging()
setup_default_logging()
A utility function that aims to streamline the set up
of the required future backend with sensible defaults for most users of
regional_epinow()
. More advanced users are recommended to setup their own
{future}
backend based on their available resources. Running this requires
the {future}
package to be installed.
setup_future( data, strategies = c("multisession", "multisession"), min_cores_per_worker = 4 )
setup_future( data, strategies = c("multisession", "multisession"), min_cores_per_worker = 4 )
data |
A |
strategies |
A vector length 1 to 2 of strategies to pass to
|
min_cores_per_worker |
Numeric, the minimum number of cores per worker. Defaults to 4 which assumes 4 MCMC chains are in use per region. |
Numeric number of cores to use per worker. If greater than 1 pass to
stan_args = list(cores = "output from setup future")
or use
future = TRUE
. If only a single strategy is used then nothing is returned.
Sets up {futile.logger}
logging, which is integrated into {EpiNow2}
.
See the documentation for {futile.logger}
for full details. By default
{EpiNow2}
prints all logs at the "INFO" level and returns them to the
console. Usage of logging is currently being explored as the current
setup cannot log stan errors or progress.
setup_logging( threshold = "INFO", file = NULL, mirror_to_console = FALSE, name = "EpiNow2" )
setup_logging( threshold = "INFO", file = NULL, mirror_to_console = FALSE, name = "EpiNow2" )
threshold |
Character string indicating the logging level see (?futile.logger for details of the available options). Defaults to "INFO". |
file |
Character string indicating the path to save logs to. By default logs will be written to the console. |
mirror_to_console |
Logical, defaults to |
name |
Character string defaulting to EpiNow2. This indicates the name
of the logger to setup. The default logger for EpiNow2 is called EpiNow2.
Nested options include: Epinow2.epinow which controls all logging for
|
Nothing
Simulations are done from given initial infections and, potentially
time-varying, reproduction numbers. Delays and parameters of the observation
model can be specified using the same options as in estimate_infections()
.
simulate_infections( estimates, R, initial_infections, day_of_week_effect = NULL, generation_time = generation_time_opts(), delays = delay_opts(), truncation = trunc_opts(), obs = obs_opts(), CrIs = c(0.2, 0.5, 0.9), backend = "rstan", seeding_time = NULL, pop = 0, ... )
simulate_infections( estimates, R, initial_infections, day_of_week_effect = NULL, generation_time = generation_time_opts(), delays = delay_opts(), truncation = trunc_opts(), obs = obs_opts(), CrIs = c(0.2, 0.5, 0.9), backend = "rstan", seeding_time = NULL, pop = 0, ... )
estimates |
deprecated; use |
R |
a data frame of reproduction numbers (column |
initial_infections |
numeric; the initial number of infections (i.e.
before |
day_of_week_effect |
either |
generation_time |
A call to |
delays |
A call to |
truncation |
A call to |
obs |
A list of options as generated by |
CrIs |
Numeric vector of credible intervals to calculate. |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
seeding_time |
Integer; the number of days before the first time point
of |
pop |
Integer, defaults to 0. Susceptible population initially present. Used to adjust Rt estimates when otherwise fixed based on the proportion of the population that is susceptible. When set to 0 no population adjustment is done. |
... |
deprecated; only included for backward compatibility |
In order to simulate, all parameters that are specified such as the mean and standard deviation of delays or observation scaling, must be fixed. Uncertain parameters are not allowed.
A data.table of simulated infections (variable infections
) and
reported cases (variable reported_cases
) by date.
R <- data.frame( date = seq.Date(as.Date("2023-01-01"), length.out = 14, by = "day"), R = c(rep(1.2, 7), rep(0.8, 7)) ) sim <- simulate_infections( R = R, initial_infections = 100, generation_time = generation_time_opts( fix_parameters(example_generation_time) ), delays = delay_opts(fix_parameters(example_reporting_delay)), obs = obs_opts(family = "poisson") )
R <- data.frame( date = seq.Date(as.Date("2023-01-01"), length.out = 14, by = "day"), R = c(rep(1.2, 7), rep(0.8, 7)) ) sim <- simulate_infections( R = R, initial_infections = 100, generation_time = generation_time_opts( fix_parameters(example_generation_time) ), delays = delay_opts(fix_parameters(example_reporting_delay)), obs = obs_opts(family = "poisson") )
Simulations are done from a given trajectory of primary observations by applying any given delays and observation parameters.
simulate_secondary( primary, day_of_week_effect = NULL, secondary = secondary_opts(), delays = delay_opts(), truncation = trunc_opts(), obs = obs_opts(), CrIs = c(0.2, 0.5, 0.9), backend = "rstan", ... )
simulate_secondary( primary, day_of_week_effect = NULL, secondary = secondary_opts(), delays = delay_opts(), truncation = trunc_opts(), obs = obs_opts(), CrIs = c(0.2, 0.5, 0.9), backend = "rstan", ... )
primary |
a data frame of primary reports (column |
day_of_week_effect |
either |
secondary |
A call to |
delays |
A call to |
truncation |
A call to |
obs |
A list of options as generated by |
CrIs |
Numeric vector of credible intervals to calculate. |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
... |
deprecated; only included for backward compatibility |
In order to simulate, all parameters that are specified such as the mean and standard deviation of delays or observation scaling, must be fixed. Uncertain parameters are not allowed.
A function of the same name that was previously based on a reimplementation of that model in R with potentially time-varying scalings and delays is available as 'convolve_and_scale()
A data.table of simulated secondary observations (column secondary
)
by date.
## load data.table to manipulate `example_confirmed` below library(data.table) cases <- as.data.table(example_confirmed)[, primary := confirm] sim <- simulate_secondary( cases, delays = delay_opts(fix_parameters(example_reporting_delay)), obs = obs_opts(family = "poisson") )
## load data.table to manipulate `example_confirmed` below library(data.table) cases <- as.data.table(example_confirmed)[, primary := confirm] sim <- simulate_secondary( cases, delays = delay_opts(fix_parameters(example_reporting_delay)), obs = obs_opts(family = "poisson") )
Defines a list specifying the arguments passed to cmdstanr::laplace()
.
stan_laplace_opts(backend = "cmdstanr", trials = 10, ...)
stan_laplace_opts(backend = "cmdstanr", trials = 10, ...)
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
trials |
Numeric, defaults to 10. Number of attempts to use rstan::vb()] before failing. |
... |
Additional parameters to pass to |
A list of arguments to pass to cmdstanr::laplace()
.
stan_laplace_opts()
stan_laplace_opts()
Defines a list specifying the arguments passed to underlying stan
backend functions via stan_sampling_opts()
and stan_vb_opts()
. Custom
settings can be supplied which override the defaults.
stan_opts( object = NULL, samples = 2000, method = c("sampling", "vb", "laplace", "pathfinder"), backend = c("rstan", "cmdstanr"), init_fit = NULL, return_fit = TRUE, ... )
stan_opts( object = NULL, samples = 2000, method = c("sampling", "vb", "laplace", "pathfinder"), backend = c("rstan", "cmdstanr"), init_fit = NULL, return_fit = TRUE, ... )
object |
Stan model object. By default uses the compiled package
default if using the "rstan" backend, and the default model obtained using
|
samples |
Numeric, default 2000. Overall number of posterior samples. When using multiple chains iterations per chain is samples / chains. |
method |
A character string, defaulting to sampling. Currently supports MCMC sampling ("sampling") or approximate posterior sampling via variational inference ("vb") and, as experimental features if the "cmdstanr" backend is used, approximate posterior sampling with the laplace algorithm ("laplace") or pathfinder ("pathfinder"). |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
init_fit |
|
return_fit |
Logical, defaults to TRUE. Should the fit stan model be returned. |
... |
Additional parameters to pass to underlying option functions,
|
A <stan_opts>
object of arguments to pass to the appropriate
rstan functions.
stan_sampling_opts()
stan_vb_opts()
# using default of [rstan::sampling()] stan_opts(samples = 1000) # using vb stan_opts(method = "vb")
# using default of [rstan::sampling()] stan_opts(samples = 1000) # using vb stan_opts(method = "vb")
Defines a list specifying the arguments passed to cmdstanr::laplace()
.
stan_pathfinder_opts(backend = "cmdstanr", samples = 2000, trials = 10, ...)
stan_pathfinder_opts(backend = "cmdstanr", samples = 2000, trials = 10, ...)
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
samples |
Numeric, default 2000. Overall number of posterior samples. When using multiple chains iterations per chain is samples / chains. |
trials |
Numeric, defaults to 10. Number of attempts to use rstan::vb()] before failing. |
... |
Additional parameters to pass to |
A list of arguments to pass to cmdstanr::laplace()
.
stan_laplace_opts()
stan_laplace_opts()
Defines a list specifying the arguments passed to either rstan::sampling()
or cmdstanr::sample()
. Custom settings can be supplied which override the
defaults.
stan_sampling_opts( cores = getOption("mc.cores", 1L), warmup = 250, samples = 2000, chains = 4, control = list(), save_warmup = FALSE, seed = as.integer(runif(1, 1, 1e+08)), future = FALSE, max_execution_time = Inf, backend = c("rstan", "cmdstanr"), ... )
stan_sampling_opts( cores = getOption("mc.cores", 1L), warmup = 250, samples = 2000, chains = 4, control = list(), save_warmup = FALSE, seed = as.integer(runif(1, 1, 1e+08)), future = FALSE, max_execution_time = Inf, backend = c("rstan", "cmdstanr"), ... )
cores |
Number of cores to use when executing the chains in parallel, which defaults to 1 but it is recommended to set the mc.cores option to be as many processors as the hardware and RAM allow (up to the number of chains). |
warmup |
Numeric, defaults to 250. Number of warmup samples per chain. |
samples |
Numeric, default 2000. Overall number of posterior samples. When using multiple chains iterations per chain is samples / chains. |
chains |
Numeric, defaults to 4. Number of MCMC chains to use. |
control |
List, defaults to empty. control parameters to pass to
underlying |
save_warmup |
Logical, defaults to FALSE. Should warmup progress be saved. |
seed |
Numeric, defaults uniform random number between 1 and 1e8. Seed of sampling process. |
future |
Logical, defaults to |
max_execution_time |
Numeric, defaults to Inf (seconds). If set wil kill off processing of each chain if not finished within the specified timeout. When more than 2 chains finish successfully estimates will still be returned. If less than 2 chains return within the allowed time then estimation will fail with an informative error. |
backend |
Character string indicating the backend to use for fitting stan models. Supported arguments are "rstan" (default) or "cmdstanr". |
... |
Additional parameters to pass to |
A list of arguments to pass to rstan::sampling()
or
cmdstanr::sample()
.
stan_sampling_opts(samples = 2000)
stan_sampling_opts(samples = 2000)
Defines a list specifying the arguments passed to rstan::vb()
or
cmdstanr::variational()
. Custom settings can be supplied which override the
defaults.
stan_vb_opts(samples = 2000, trials = 10, iter = 10000, ...)
stan_vb_opts(samples = 2000, trials = 10, iter = 10000, ...)
samples |
Numeric, default 2000. Overall number of approximate posterior samples. |
trials |
Numeric, defaults to 10. Number of attempts to use rstan::vb()] before failing. |
iter |
Numeric, defaulting to 10000. Number of iterations to use in
|
... |
Additional parameters to pass to |
A list of arguments to pass to rstan::vb()
or
cmdstanr::variational()
, depending on the chosen backend.
stan_vb_opts(samples = 1000)
stan_vb_opts(samples = 1000)
summary
method for class "epinow".
## S3 method for class 'epinow' summary( object, output = c("estimates", "forecast", "estimated_reported_cases"), date = NULL, params = NULL, ... )
## S3 method for class 'epinow' summary( object, output = c("estimates", "forecast", "estimated_reported_cases"), date = NULL, params = NULL, ... )
object |
A list of output as produced by "epinow". |
output |
A character string of output to summarise. Defaults to "estimates" but also supports "forecast", and "estimated_reported_cases". |
date |
A date in the form "yyyy-mm-dd" to inspect estimates for. |
params |
A character vector of parameters to filter for. |
... |
Pass additional summary arguments to lower level methods |
Returns a <data.frame>
of summary output
summary.estimate_infections epinow
summary
method for class "estimate_infections".
## S3 method for class 'estimate_infections' summary( object, type = c("snapshot", "parameters", "samples"), date = NULL, params = NULL, ... )
## S3 method for class 'estimate_infections' summary( object, type = c("snapshot", "parameters", "samples"), date = NULL, params = NULL, ... )
object |
A list of output as produced by "estimate_infections". |
type |
A character vector of data types to return. Defaults to
"snapshot" but also supports "parameters", and "samples". "snapshot" return
a summary at a given date (by default the latest date informed by data).
"parameters" returns summarised parameter estimates that can be further
filtered using |
date |
A date in the form "yyyy-mm-dd" to inspect estimates for. |
params |
A character vector of parameters to filter for. |
... |
Pass additional arguments to |
Returns a <data.frame>
of summary output
summary estimate_infections report_summary
Returns a truncation distribution formatted for usage by
downstream functions. See estimate_truncation()
for an approach to
estimate these distributions.
trunc_opts(dist = Fixed(0), default_cdf_cutoff = 0.001, weight_prior = FALSE)
trunc_opts(dist = Fixed(0), default_cdf_cutoff = 0.001, weight_prior = FALSE)
dist |
A delay distribution or series of delay distributions reflecting
the truncation. It can be specified using the probability distributions
interface in |
default_cdf_cutoff |
Numeric; default CDF cutoff to be used if an
unconstrained distribution is passed as |
weight_prior |
Logical; if TRUE, the truncation prior will be weighted by the number of observation data points, in doing so approximately placing an independent prior at each time step and usually preventing the posteriors from shifting. If FALSE (default), no weight will be applied, i.e. the truncation distribution will be treated as a single parameter. |
A <trunc_opts>
object summarising the input truncation
distribution.
convert_to_logmean()
convert_to_logsd()
bootstrapped_dist_fit()
Distributions
# no truncation trunc_opts() # truncation dist trunc_opts(dist = LogNormal(mean = 3, sd = 2, max = 10))
# no truncation trunc_opts() # truncation dist trunc_opts(dist = LogNormal(mean = 3, sd = 2, max = 10))
This functions allows the user to more easily specify data driven or model
based priors for estimate_secondary()
from example from previous model
fits using a <data.frame>
to overwrite other default settings. Note that
default settings are still required.
update_secondary_args(data, priors, verbose = TRUE)
update_secondary_args(data, priors, verbose = TRUE)
data |
A list of data and arguments as returned by |
priors |
A |
verbose |
Logical, defaults to |
A list as produced by create_stan_data()
.
priors <- data.frame(variable = "frac_obs", mean = 3, sd = 1) data <- list(obs_scale_mean = 4, obs_scale_sd = 3) update_secondary_args(data, priors)
priors <- data.frame(variable = "frac_obs", mean = 3, sd = 1) data <- list(obs_scale_mean = 4, obs_scale_sd = 3) update_secondary_args(data, priors)