Skip to contents

Adds an edge from one node to another in a a directed graph builder.

Usage

add_edge(graph_builder, from, to)

Arguments

graph_builder

A graph builder_object

from

The from node.

to

The to node.

Value

The updated graph builder object

See also

Examples

graph_builder() |>
  add_edge("A", "B")
#> <pointer: 0x5576cfc008d0>
#> attr(,"class")
#> [1] "DirectedGraphBuilder"