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)
default_cdf_cutoff: Numeric; default CDF cutoff to be used if an unconstrained distribution is passed as dist. If dist is already constrained by having a maximum or CDF cutoff this is ignored. Note that this can only be done for <dist_spec> objects with fixed parameters.
weight_prior: Logical; if TRUE (default), any priors given in dist
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. any parameters in dist will be treated as a single parameters.
Returns
A <generation_time_opts> object summarising the input delay distributions.
Details
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.
Examples
# default settings with a fixed generation time of 1generation_time_opts()# A fixed gamma distributed generation timegeneration_time_opts(Gamma(mean =3, sd =2, max =14))# An uncertain gamma distributed generation timegeneration_time_opts( Gamma( shape = Normal(mean =3, sd =1), rate = Normal(mean =2, sd =0.5), max =14))# An example generation timegt_opts(example_generation_time)