CausalMixGPD

Summarize a one-arm workflow bundle

summary.causalmixgpd_bundle() prints the structural contents of a bundle before MCMC is run.

Usage

# S3 method for class 'causalmixgpd_bundle'
summary(object, ...)

Arguments

Value

An invisible list with elements meta, priors, and monitors.

Details

The summary is meant for workflow validation rather than inference. It shows:

This is the recommended checkpoint after build_nimble_bundle and before run_mcmc_bundle_manual.

See also

build_nimble_bundle, print.causalmixgpd_bundle, run_mcmc_bundle_manual.

Examples

if (FALSE) { # \dontrun{
y <- abs(stats::rnorm(50)) + 0.1
bundle <- build_nimble_bundle(y = y, backend = "sb", kernel = "normal",
                             GPD = FALSE, components = 6)
summary(bundle)
} # }