Builds a graph builder into a new DirectedGraph object.
NOTE: This will consume the builder. It will leave an empty builder in its place.
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 |
#>