View source: R/constrained_post.R
constrained_posterior | R Documentation |
Compute the posterior distribution with off-diagonal elements of the precision matrix constrained to zero.
constrained_posterior(
object,
adj,
method = "direct",
iter = 5000,
progress = TRUE,
...
)
object |
An object of class |
adj |
A |
method |
Character string. Which method should be used ? Defaults to
the "direct sampler" (i.e., |
iter |
Number of iterations (posterior samples; defaults to 5000). |
progress |
Logical. Should a progress bar be included (defaults to |
... |
Currently ignored. |
An object of class contrained
, including
precision_mean
The posterior mean for the precision matrix.
pcor_mean
The posterior mean for the precision matrix.
precision_samps
A 3d array of dimension p
by p
by iter
including the sampled precision matrices.
pcor_samps
A 3d array of dimension p
by p
by iter
including sampled partial correlations matrices.
# data
Y <- bfi[,1:10]
# sample posterior
fit <- estimate(Y, iter = 100)
# select graph
sel <- select(fit)
# constrained posterior
post <- constrained_posterior(object = fit,
adj = sel$adj,
iter = 100,
progress = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.