summary.causalmixgpd_bundle() prints the structural contents of a
bundle before MCMC is run.
# S3 method for class 'causalmixgpd_bundle'
summary(object, ...)
object:
A "causalmixgpd_bundle" object.
…:
Unused.
An invisible list with elements meta, priors, and monitors.
The summary is meant for workflow validation rather than inference. It shows:
the model metadata (backend, kernel, components, covariates, GPD flag),
the prior/parameter table derived from spec$plan,
the nodes that will be monitored during MCMC.
This is the recommended checkpoint after
build_nimble_bundle
and before
run_mcmc_bundle_manual.
build_nimble_bundle,
print.causalmixgpd_bundle,
run_mcmc_bundle_manual.
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)
} # }