functions to manipulate a graph
Details
reorder_edges()
allows to reorder edges according to an attribute so that edges are
drawn in the given order.
Examples
library(igraph)
g <- sample_gnp(10, 0.5)
E(g)$attr <- 1:ecount(g)
gn <- reorder_edges(g,"attr")