View source: R/parents.R View source: R/extendr-wrappers.R View source: R/extendr-wrappers.R
parents | R Documentation |
Get a list of the node ids of the parents of the provided node.
parents(graph, nodes)
graph |
A graph object |
nodes |
A character vector of nodes to find parents for |
A character vector
graph <- graph_builder() |>
add_edge(from = "A", to = "B") |>
build_directed()
graph |> parents("A")
graph |> parents("B")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.