dag.to.cpdag {bnstruct} | R Documentation |
convert a DAG to a CPDAG
Description
Convert the adjacency matrix representing the DAG of a BN
into the adjacency matrix representing a CPDAG for the network.
Usage
dag.to.cpdag(dag.adj.matrix, layering = NULL, layer.struct = NULL)
Arguments
dag.adj.matrix |
the adjacency matrix representing the DAG of a |
layering |
vector containing the layers where each node belongs. |
layer.struct |
layer.struct |
Value
the adjacency matrix representing a CPDAG for the network.
See Also
Examples
## Not run:
net <- learn.network(dataset, layering=layering, layer.struct=layer.struct)
pdag <- dag.to.cpdag(dag(net), layering, layer.struct)
wpdag(net) <- pdag
## End(Not run)
[Package bnstruct version 1.0.15 Index]