msep
determines whether two set of nodes are m-separated
by a third set of nodes.msep(a, alpha, beta, C = c())
graphNEL
or an igraph
object
or a vector of length $3e$, where $e$ is the number of edges of the graph,
that is a sequence of triples (type, noda
a
a
TRUE
if alpha
and beta
are m-separated given C
.
FALSE
otherwise.dSep
, MarkEqMag
H <-matrix(c(0,0,0,0,
1,0,0,1,
0,1,0,0,
0,0,0,0),4,4)
msep(H,1,4, 2)
msep(H,1,4, c())
Run the code above in your browser using DataLab