Skip to contents

Retrieves the nodes in a graph that have no children under a certain node or group of nodes

Usage

get_leaves_under(graph, nodes)

Arguments

graph

A graph object

nodes

A character vector of nodes to find leaves for

Value

A character vector of nodes

Examples

graph <- graph_builder() |>
  add_path(c("A", "B", "C")) |>
  add_path(c("A", "D", "C")) |>
  add_path(c("Z", "B", "C")) |>
  add_path(c("Z", "B", "H")) |>
  build_directed()

get_leaves_under(graph, "D")
#> # of nodes: 1
#> |           Nodes           |
#> |             C             |
#>