modelp {BiDAG} | R Documentation |
Estimating a graph corresponding to a posterior probability threshold
Description
This function constructs a directed graph (not necessarily acyclic) including all edges with a posterior probability above a certain threshold. The posterior probability is evaluated as the Monte Carlo estimate from a sample of DAGs obtained via an MCMC scheme.
Usage
modelp(MCMCchain, p, pdag = FALSE, burnin = 0.2)
Arguments
MCMCchain |
object of class |
p |
threshold such that only edges with a higher posterior probability will be retained in the directed graph summarising the sample of DAGs |
pdag |
logical, if TRUE (FALSE by default) all DAGs in the MCMCchain are first converted to equivalence class (CPDAG) before the averaging |
burnin |
number between |
Value
a square matrix with dimensions equal to the number of variables representing the adjacency matrix of the directed graph summarising the sample of DAGs
Author(s)
Polina Suter
Examples
Bostonscore<-scoreparameters("bge", Boston)
## Not run:
partfit<-sampleBN(Bostonscore, "partition")
hdag<-modelp(partfit, p=0.9)
## End(Not run)