matrix2graph | R Documentation |
Creates a graph of class graphMCP
from a given transition
matrix or vice versa.
matrix2graph(m, weights = rep(1/dim(m)[1], dim(m)[1]))
graph2matrix(graph)
m |
A transition matrix. |
weights |
A numeric for the initial weights. |
graph |
A graph of class |
The hypotheses names are the row names or if these are NULL
, the
column names or if these are also NULL
of type H1, H2, H3, ...
If the diagonal of the matrix is unequal zero, the values are ignored and a warning is given.
A graph of class graphMCP
with the given transition
matrix for matrix2graph. The transition matrix of a graphMCP
graph for graph2matrix.
Kornelius Rohmeyer rohmeyer@small-projects.de
# Bonferroni-Holm:
m <- matrix(rep(1/3, 16), nrow=4)
diag(m) <- c(0, 0, 0, 0)
graph <- matrix2graph(m)
print(graph)
graph2matrix(graph)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.