View source: R/estimate_delay.R
bootstrapped_dist_fit | R Documentation |
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
)
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.