Usage
rip(object, root = NULL, nLevels = NULL)
## S3 method for class 'graphNEL':
rip(object, root = NULL, nLevels = NULL)
## S3 method for class 'igraph':
rip(object, root = NULL, nLevels = NULL)
## S3 method for class 'matrix':
rip(object, root = NULL, nLevels = NULL)
ripMAT(amat, root = NULL, nLevels = NULL)
jTree(object, ...)
## S3 method for class 'graphNEL':
jTree(object, method="mcwh",nLevels=rep(2,length(nodes(object))),...)
## S3 method for class 'igraph':
jTree(object, method="mcwh",nLevels=rep(2,length(V(object))),...)
## S3 method for class 'matrix':
jTree(object, method="mcwh",nLevels=rep(2,ncol(object)),...)
Arguments
object
An undirected graph represented either as a 'graphNEL', a 'matrix' or
an 'igraph'.
root
A vector of variables. The first variable in the perfect ordering
will be the first variable on 'root'. The ordering of the variables
given in 'root' will be followed as far as possible.
nLevels
Typically, the number of levels of the variables
(nodes) when these are discrete. Used in determining the
triangulation using a "minimum clique weight heuristic". See section
'details'.
method
The triangulation method, "mcwh"
is a C
implementation of a minimum clique weight heuristic,
"R"
is a corresponding R implementation (experimental)
...
Additional arguments; currently not used