Gamma2graph {graphicalExtremes} | R Documentation |
Convert matrix to graph
Description
Creates a graph object representing the graph structure implied by a parameter matrix.
Usage
Gamma2graph(Gamma, tol = get_large_tol(), check = TRUE)
Sigma2graph(Sigma, tol = get_large_tol(), k = NULL, full = FALSE, check = TRUE)
Theta2graph(Theta, tol = get_large_tol(), k = NULL, full = FALSE, check = TRUE)
partialMatrixToGraph(M)
Arguments
Gamma |
Numeric |
tol |
Numeric scalar. Entries in the precision matrix with absolute value smaller than this are considered to be zero. |
check |
Whether to check the inputs and call |
Sigma |
Numeric |
k |
|
full |
Logical. If |
Theta |
Numeric |
M |
Partial matrix with |
Value
An igraph::graph
object.
See Also
Other parameter matrix transformations:
Gamma2Sigma()
,
chi2Gamma()
,
par2Matrix()