adjMatrix | R Documentation |
Transforms the “edge matrix” of a graph into the adjacency matrix.
adjMatrix(A)
A |
a square matrix representing the edge matrix of a graph. |
Given the edge matrix A
of a graph, this can be transformed into
an adjacency matrix E
with the formula E = (A-I)^T
.
E |
the adjacency matrix of the graph. |
Giovanni M. Marchetti
edgematrix
amat <- DAG(y ~ x+z, z~u+v)
E <- edgematrix(amat)
adjMatrix(E)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.