Skip to contents

Builds a graph builder into a new DirectedGraph object.

NOTE: This will consume the builder. It will leave an empty builder in its place.

Usage

build_directed(graph_builder)

Arguments

graph_builder

A graph builder object

Value

A DirectedGraph Object

See also

Other build graphs: add_edge(), add_path(), build_acyclic(), graph_builder(), populate_edges()

Examples

graph_builder() |>
  add_path(c("1", "2", "3", "4")) |>
  build_directed()
#> # of nodes: 4
#> # of edges: 3
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | 1               | 2               |
#> | 2               | 3               |
#> | 3               | 4               |
#>