It finds the nodes that have no parents in the given set.
See also
Other analyze graphs:
find_all_paths()
,
find_path()
,
find_path_one_to_many()
,
get_all_leaves()
,
get_all_roots()
,
get_leaves_under()
,
get_roots_over()
Examples
graph_edges <- data.frame(
parent = c("A", "B", "C", "C", "F"),
child = c("B", "C", "D", "E", "D")
)
graph <- graph_builder() |>
populate_edges(graph_edges, parent, child) |>
build_directed()
graph
#> # of nodes: 6
#> # of edges: 5
#> # of roots: 2
#> # of leaves: 2
#>
#> | Parent | Child |
#> | --------------- | --------------- |
#> | A | B |
#> | B | C |
#> | C | E |
#> | C | D |
#> | F | D |
#>
graph |> least_common_parents(c("D", "E"))
#> # of nodes: 2
#> | Nodes |
#> | D |
#> | E |
#>