Manipulate graph
functions to manipulate a graph
reorder_edges(g, attr, desc = TRUE)
g
: igraph objectattr
: edge attribute name used to sort edgesdesc
: logical. sort in descending (default) or ascending ordermanipulated graph
reorder_edges()
allows to reorder edges according to an attribute so that edges are drawn in the given order.
library(igraph) g <- sample_gnp(10, 0.5) E(g)$attr <- 1:ecount(g) gn <- reorder_edges(g,"attr")
David Schoch
Useful links