reverse_edges | R Documentation |
The new graph will contain the same vertices, edges and attributes as
the original graph, except that the direction of the edges selected by
their edge IDs in the eids
argument will be reversed. When reversing
all edges, this operation is also known as graph transpose.
reverse_edges(graph, eids = E(graph))
## S3 method for class 'igraph'
t(x)
graph |
The input graph. |
eids |
The edge IDs of the edges to reverse. |
x |
The input graph. |
The result graph where the direction of the edges with the given IDs are reversed
Other functions for manipulating graph structure:
+.igraph()
,
add_edges()
,
add_vertices()
,
complementer()
,
compose()
,
connect()
,
contract()
,
delete_edges()
,
delete_vertices()
,
difference()
,
difference.igraph()
,
disjoint_union()
,
edge()
,
igraph-minus
,
intersection()
,
intersection.igraph()
,
path()
,
permute()
,
rep.igraph()
,
simplify()
,
union()
,
union.igraph()
,
vertex()
g <- make_graph(~ 1 -+ 2, 2 -+ 3, 3 -+ 4)
reverse_edges(g, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.