Nothing
#' Ensemble estimate of Rt
#'
#' @param cl.daily Dataframe of inferred daily incidence.
#' @inheritParams estimate_R_cl
#' @keywords internal
#' @return A summary of individual Rt realizations with 95% confidence intervals
#' @seealso [EpiEstim::make_config()]
#'
estimate_R_cl_rep <- function(
cl.daily,
dist.repfrac,
dist.repdelay,
dist.incub,
dist.gi,
prm.R,
silent = FALSE,
RL.max.iter = 10
){
if(is.null(prm.R$config.EpiEstim) & !silent)
message("Using default config in `EpiEstim::estimate_R()`.")
# TODO: parallelize in a generic way (using a custom
# iteration function that we use both on the clinical
# and ww side)
tmp = list()
for(i in 1:prm.R$iter){
tmp[[i]] = estimate_R_cl_single(
cl.daily = cl.daily,
dist.repfrac = dist.repfrac,
dist.repdelay = dist.repdelay,
dist.incub = dist.incub,
dist.gi = dist.gi,
prm.R = prm.R,
silent = silent,
RL.max.iter = RL.max.iter
)
}
R = dplyr::bind_rows(tmp) |> dplyr::filter(!is.na(date))
res = R |>
summary_postsamples(prm.R) |>
dplyr::mutate(use = (date >= min(date, na.rm = TRUE) +
lubridate::days(dist.gi$max)))
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.