powered by
A multigraph has at least one pair or multiple edges, edges connecting the same (ordered) pair of vertices.
is_multigraph(graph)
Logical scalar.
Input graph.
Other multigraphs: is_loopy(), is_simple(), remove_loops(), remove_multiple(), simplify()
is_loopy()
is_simple()
remove_loops()
remove_multiple()
simplify()
G <- graph(list(A = c("A", "B", "B"), B = c("A", "C"), C = "A")) is_multigraph(G) G2 <- simplify(G) is_multigraph(G2)
Run the code above in your browser using DataLab