Compute pointwise credible intervals for each dyad over time
Usage
theta_credible(
fit,
probs = c(0.05, 0.5, 0.95),
i = NULL,
j = NULL,
rel = 1,
time = NULL
)Examples
# \donttest{
sim <- simulate_dynamic_dbn(n = 6, time = 5, seed = 1)
fit <- dbn(sim$Y, model = "dynamic", nscan = 200, burn = 100, verbose = FALSE)
tc <- theta_credible(fit)
# }