powered by
functions to manipulate a graph
reorder_edges(g, attr, desc = TRUE)
manipulated graph
igraph object
edge attribute name used to sort edges
logical. sort in descending (default) or ascending order
David Schoch
reorder_edges() allows to reorder edges according to an attribute so that edges are drawn in the given order.
reorder_edges()
library(igraph) g <- sample_gnp(10, 0.5) E(g)$attr <- 1:ecount(g) gn <- reorder_edges(g,"attr")
Run the code above in your browser using DataLab