Nothing
#' Extract samples for a latent state from a Stan model
#'
#' @description
#' Extracts a time-varying latent state from a list of stan output and returns
#' it as a `<data.table>`.
#
#' @param param Character string indicating the latent state to extract
#'
#' @param samples Extracted stan model (using [rstan::extract()])
#'
#' @param dates A vector identifying the dimensionality of the latent state to
#' extract. Generally this will be a date.
#'
#' @return A `<data.frame>` containing the following columns:
#' \describe{
#' \item{time}{Integer index (1..N) corresponding to the position in the
#' supplied dates vector. This is the row/time-step index that maps to the
#' date column}
#' \item{date}{The date corresponding to this time step}
#' \item{sample}{Integer sample ID from the posterior}
#' \item{value}{Numeric value of the parameter sample}
#' }
#' @importFrom data.table melt as.data.table
#' @keywords internal
extract_latent_state <- function(param, samples, dates) {
# Return NULL if parameter doesn't exist
if (!(param %in% names(samples))) {
return(NULL)
}
param_df <- data.table::as.data.table(
t(
data.table::as.data.table(
samples[[param]]
)
)
)
param_df <- param_df[, time := seq_len(.N)]
param_df <- data.table::melt(param_df,
id.vars = "time",
variable.name = "var"
)
param_df <- param_df[, var := NULL][, sample := seq_len(.N), by = .(time)]
param_df <- param_df[, date := dates, by = .(sample)]
param_df[, .(time, date, sample, value)]
}
#' Extract samples from all parameters
#'
#' @param samples Extracted stan model (using [rstan::extract()])
#' @param args Stan data list containing param_id_* and params_variable_lookup
#' for parameter naming.
#' @return A `<data.table>` with columns: variable, sample, value,
#' or NULL if parameters don't exist in the samples
#' @keywords internal
extract_parameters <- function(samples, args) {
# Check if params exist
if (!("params" %in% names(samples))) {
return(NULL)
}
# Extract all parameters
param_array <- samples[["params"]]
n_cols <- ncol(param_array)
# Build reverse lookup: column index -> parameter name
param_names <- rep(NA_character_, n_cols)
# Check all param_id_* variables to build the mapping
id_vars <- grep("^param_id_", names(args), value = TRUE)
for (id_var in id_vars) {
param_name <- sub("^param_id_", "", id_var)
id <- args[[id_var]]
if (!is.na(id) && id > 0) {
lookup_idx <- args[["params_variable_lookup"]][id]
if (!is.na(lookup_idx) && lookup_idx > 0 && lookup_idx <= n_cols) {
param_names[lookup_idx] <- param_name
}
}
}
# Extract all columns
samples_list <- lapply(seq_len(n_cols), function(i) {
# Use named parameter if available, otherwise use indexed name
par_name <- if (!is.na(param_names[i])) {
param_names[i]
} else {
paste0("params[", i, "]")
}
data.table::data.table(
variable = par_name,
sample = seq_along(param_array[, i]),
value = param_array[, i]
)
})
data.table::rbindlist(samples_list)
}
#' Name delay parameters for a single delay type
#'
#' @param delay_names Current delay names vector (modified in place via env)
#' @param delay_name Name prefix for this delay type
#' @param flat_range Indices of flat delays for this type
#' @param types_p Vector indicating parametric (1) or not (0)
#' @param types_id Vector of parametric delay indices
#' @param params_groups Parameter column groupings
#' @param n_cols Total number of parameter columns
#' @return Updated delay_names vector
#' @keywords internal
#' @noRd
name_delay_type_params <- function(delay_names, delay_name, flat_range,
types_p, types_id, params_groups, n_cols) {
param_idx <- 1
for (flat_i in flat_range) {
if (types_p[flat_i] != 1) next
p_idx <- types_id[flat_i]
col_start <- params_groups[p_idx]
col_end <- params_groups[p_idx + 1] - 1
for (col in col_start:col_end) {
if (col <= n_cols) {
delay_names[col] <- paste0(delay_name, "[", param_idx, "]")
param_idx <- param_idx + 1
}
}
}
delay_names
}
#' Build delay name lookup from args
#'
#' Helper function to map parameter column indices to delay names.
#'
#' @param args Stan data list with delay lookup variables
#' @param n_cols Number of parameter columns
#' @return Character vector mapping column indices to delay names
#' @keywords internal
#' @noRd
build_delay_name_lookup <- function(args, n_cols) {
delay_names <- rep(NA_character_, n_cols)
id_vars <- grep("^delay_id_", names(args), value = TRUE)
required <- c(
"delay_types_groups", "delay_types_p",
"delay_types_id", "delay_params_groups"
)
if (length(id_vars) == 0 || !all(required %in% names(args))) {
return(delay_names)
}
types_groups <- args[["delay_types_groups"]]
types_p <- args[["delay_types_p"]]
types_id <- args[["delay_types_id"]]
params_groups <- args[["delay_params_groups"]]
for (id_var in id_vars) {
delay_name <- sub("^delay_id_", "", id_var)
id_val <- args[[id_var]]
id <- if (length(id_val) > 1) id_val[1] else id_val
if (is.na(id) || id <= 0 || id >= length(types_groups)) next
flat_start <- types_groups[id]
flat_end <- types_groups[id + 1] - 1
delay_names <- name_delay_type_params(
delay_names, delay_name, flat_start:flat_end,
types_p, types_id, params_groups, n_cols
)
}
delay_names
}
#' Extract samples from all delay parameters
#'
#' Extracts samples from all delay parameters using the delay ID lookup system.
#' Similar to extract_parameters(), this extracts all delay distribution
#' parameters and uses the *_id variables (e.g., delay_id, trunc_id) to assign
#' meaningful names.
#'
#' @param samples Extracted stan model (using [rstan::extract()])
#' @param args Stan data list with delay_id_* and related lookup variables.
#' @return A `<data.table>` with columns: variable, sample, value,
#' or NULL if delay parameters don't exist in the samples
#' @keywords internal
extract_delays <- function(samples, args) {
if (!("delay_params" %in% names(samples))) {
return(NULL)
}
delay_params <- samples[["delay_params"]]
n_cols <- ncol(delay_params)
delay_names <- build_delay_name_lookup(args, n_cols)
# Extract all columns
samples_list <- lapply(seq_len(n_cols), function(i) {
# Use named delay if available, otherwise use indexed name
par_name <- if (!is.na(delay_names[i])) {
delay_names[i]
} else {
paste0("delay_params[", i, "]")
}
data.table::data.table(
variable = par_name,
sample = seq_along(delay_params[, i]),
value = delay_params[, i]
)
})
data.table::rbindlist(samples_list)
}
#' Extract all samples from a stan fit
#'
#' 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.
#' @param stan_fit A `<stanfit>` or `<CmdStanMCMC>` object as returned by
#' [fit_model()].
#' @param pars Any selection of parameters to extract
#' @param include whether the parameters specified in `pars` should be included
#' (`TRUE`, the default) or excluded (`FALSE`)
#' @importFrom cli cli_abort
#' @return List of data.tables with samples
#' @export
#'
#' @importFrom data.table data.table melt setkey
#' @importFrom rstan extract
extract_samples <- function(stan_fit, pars = NULL, include = TRUE) {
if (inherits(stan_fit, "stanfit")) {
extract_args <- list(object = stan_fit, include = include)
if (!is.null(pars)) extract_args <- c(extract_args, list(pars = pars))
return(do.call(rstan::extract, extract_args))
}
if (!inherits(stan_fit, "CmdStanMCMC") &&
!inherits(stan_fit, "CmdStanFit")) {
cli_abort(
"{.var stan_fit} must be a {.cls stanfit}, {.cls CmdStanMCMC} or
{.cls CmdStanFit} object."
)
}
# extract sample from stan object
if (!include) {
all_pars <- stan_fit$metadata()$stan_variables
pars <- setdiff(all_pars, pars)
}
samples_df <- data.table::data.table(stan_fit$draws(
variables = pars, format = "df"
))
# convert to rstan format
samples_df <- suppressWarnings(data.table::melt(
samples_df,
id.vars = c(".chain", ".iteration", ".draw")
))
samples_df <- samples_df[
,
index := sub("^.*\\[([0-9,]+)\\]$", "\\1", variable)
][
,
variable := sub("\\[.*$", "", variable)
]
samples <- split(samples_df, by = "variable")
samples <- purrr::map(samples, function(df) {
permutation <- sample(max(df$.draw), max(df$.draw), replace = FALSE)
df <- df[, new_draw := permutation[.draw]]
setkey(df, new_draw)
max_indices <- strsplit(tail(df$index, 1), split = ",", fixed = TRUE)[[1]]
if (any(grepl("[^0-9]", max_indices))) {
max_indices <- 1
} else {
max_indices <- as.integer(max_indices)
}
ret <- aperm(
a = array(df$value, dim = c(max_indices, length(permutation))),
perm = c(length(max_indices) + 1, seq_along(max_indices))
)
## permute
dimnames(ret) <- c(
list(iterations = NULL), rep(list(NULL), length(max_indices))
)
ret
})
samples
}
#' Extract a parameter summary from a Stan object
#'
#' @description
#' Extracts summarised parameter posteriors from a `stanfit` object using
#' `rstan::summary()` in a format consistent with other summary functions
#' in `{EpiNow2}`.
#'
#' @param fit A `<stanfit>` objec.
#
#' @param params A character vector of parameters to extract. Defaults to all
#' parameters.
#'
#' @param var_names Logical defaults to `FALSE`. Should variables be named.
#' Automatically set to TRUE if multiple parameters are to be extracted.
#'
#' @return 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.
#'
#' @inheritParams calc_summary_measures
#' @export
#' @importFrom posterior mcse_mean
#' @importFrom data.table as.data.table :=
#' @importFrom rstan summary
extract_stan_param <- function(fit, params = NULL,
CrIs = c(0.2, 0.5, 0.9), var_names = FALSE) {
# generate symmetric CrIs
CrIs <- sort(CrIs)
sym_CrIs <- c(0.5, 0.5 - CrIs / 2, 0.5 + CrIs / 2)
sym_CrIs <- sort(sym_CrIs)
CrIs <- round(100 * CrIs, 0)
CrIs <- c(paste0("lower_", rev(CrIs)), "median", paste0("upper_", CrIs))
if (!is.null(params)) {
if (length(params) > 1) {
var_names <- TRUE
}
} else {
var_names <- TRUE
}
if (inherits(fit, "stanfit")) { # rstan backend
summary_args <- list(object = fit, probs = sym_CrIs)
if (!is.null(params)) summary_args <- c(summary_args, list(pars = params))
param_summary <- do.call(rstan::summary, summary_args)
param_summary <- data.table::as.data.table(param_summary$summary,
keep.rownames = ifelse(var_names,
"variable",
FALSE
)
)
param_summary <- param_summary[, c("n_eff", "Rhat") := NULL]
} else if (inherits(fit, "CmdStanMCMC")) { # cmdstanr backend
param_summary <- fit$summary(
variable = params,
mean, mcse_mean, sd, ~ quantile(.x, probs = sym_CrIs)
)
if (!var_names) param_summary$variable <- NULL
param_summary <- data.table::as.data.table(param_summary)
}
cols <- c("mean", "se_mean", "sd", CrIs)
if (var_names) {
cols <- c("variable", cols)
}
colnames(param_summary) <- cols
param_summary
}
#' Generate initial conditions from a Stan fit
#'
#' @description `r lifecycle::badge("experimental")`
#' 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](https://github.com/ImperialCollegeLondon/epidemia/) authored by
#' James Scott.
#'
#' @param fit A `<stanfit>` object.
#'
#' @param current_inits A function that returns a list of initial conditions
#' (such as [create_initial_conditions()]). Only used in `exclude_list` is
#' specified.
#'
#' @param exclude_list A character vector of parameters to not initialise from
#' the fit object, defaulting to `NULL`.
#'
#' @param samples Numeric, defaults to 50. Number of posterior samples.
#'
#' @return A function that when called returns a set of initial conditions as a
#' named list.
#'
#' @importFrom purrr map
#' @importFrom rstan extract
#' @importFrom utils modifyList
#' @export
extract_inits <- function(fit, current_inits,
exclude_list = NULL,
samples = 50) {
# extract and generate samples as function
init_fun <- function(i) {
res <- lapply(
extract_samples(fit),
function(x) {
if (length(dim(x)) == 1) {
as.array(x[i])
} else if (length(dim(x)) == 2) {
x[i, ]
} else {
x[i, , ]
}
}
)
for (j in names(res)) {
if (length(res[j]) == 1) {
res[[j]] <- as.array(res[[j]])
}
}
res$r <- NULL
res$log_lik <- NULL
res$lp__ <- NULL
res$infections <- NULL
res$reports <- NULL
res$obs_reports <- NULL
res$imputed_reports <- NULL
res
}
# extract samples
fit_inits <- purrr::map(1:samples, init_fun) # nolint
# set up sampling function
exclude_vars <- exclude_list
old_init_fn <- current_inits
inits_sample <- function(inits_list = fit_inits,
old_inits = old_init_fn,
exclude = exclude_vars) {
i <- sample(seq_along(inits_list), 1)
fit_inits <- inits_list[[i]]
if (!is.null(exclude_list)) {
old_inits_sample <- old_inits()
old_inits_sample <- old_inits_sample[exclude]
new_inits <- modifyList(fit_inits, old_inits_sample)
} else {
new_inits <- fit_inits
}
new_inits
}
inits_sample
}
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.