Display adjacency matrix of the directed graph as an image

adjacency.image(edges, required.groups = c(0), cex.axis = 1)

Arguments

edges

an edge list

required.groups

which edge groups should be included?

cex.axis

character expansion factor for the edge labels

Value

Returns the adjacency matrix for the directed graph.

Details

Display the matrix constructed by adjacency.matrix as an image.

See also

adjacency.matrix

Examples

edges <- parse.digraph(c( "E *-> D", "D *-> C", "C -> E", "E *-> B", "B *-> A", "A -> E", "D -> B")) edges <- enforce.limitation(edges) adjacency.image(edges)