graph_manipulate {graphlayouts} | R Documentation |
Manipulate graph
Description
functions to manipulate a graph
Usage
reorder_edges(g, attr, desc = TRUE)
Arguments
g |
igraph object |
attr |
edge attribute name used to sort edges |
desc |
logical. sort in descending (default) or ascending order |
Details
reorder_edges()
allows to reorder edges according to an attribute so that edges are
drawn in the given order.
Value
manipulated graph
Author(s)
David Schoch
Examples
library(igraph)
library(ggraph)
g <- sample_gnp(10, 0.5)
E(g)$attr <- 1:ecount(g)
gn <- reorder_edges(g,"attr")
[Package graphlayouts version 1.1.1 Index]