Skip to contents

orbweaver helps you to build, manipulate and analyze directed and acyclic graphs in R.

Build

graph <- graph_builder() |>
  add_edge(from = "a", to = "b") |>
  add_edge(from = "a", to = "c") |>
  add_edge(from = "b", to = "d") |>
  add_edge(from = "c", to = "d") |>
  add_path(path = c("a", "b", "d")) |>
  build_directed()
graph
#> # of nodes: 4
#> # of edges: 4
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | a               | b               |
#> | a               | c               |
#> | b               | d               |
#> | c               | d               |
edges <- data.frame(
  parent = c("a", "a", "b", "c"),
  child = c("b", "c", "d", "d")
)

acyclic_graph <- graph_builder() |>
  populate_edges(edges_df = edges, parent_col = parent, child_col = child) |>
  build_acyclic()
acyclic_graph
#> # of nodes: 4
#> # of edges: 4
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | a               | b               |
#> | a               | c               |
#> | b               | d               |
#> | c               | d               |

i/o

file <- tempfile()
graph_to_bin(graph, path = file)
#> NULL
graph_from_bin(path = file, type = "directed")
#> # of nodes: 4
#> # of edges: 4
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | a               | b               |
#> | a               | c               |
#> | b               | d               |
#> | c               | d               |

bin <- graph_to_bin(graph)
graph_from_bin(bin = bin, type = "directed")
#> # of nodes: 4
#> # of edges: 4
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | a               | b               |
#> | a               | c               |
#> | b               | d               |
#> | c               | d               |

Explore

has_children(graph, nodes = "a")
#> [1] TRUE
has_children(graph, nodes = "d")
#> [1] FALSE
has_parents(graph, nodes = "a")
#> [1] FALSE
has_parents(graph, nodes = "d")
#> [1] TRUE
  • subset() subsets a graph to include only specific nodes.
subset(graph, nodes = c("a", "b", "d"))
#> # of nodes: 4
#> # of edges: 4
#> # of roots: 1
#> # of leaves: 1
#> 
#> |     Parent      |      Child      |
#> | --------------- | --------------- |
#> | a               | b               |
#> | a               | c               |
#> | b               | d               |
#> | c               | d               |
  • length() returns the number of nodes in a graph.
length(graph)
#> [1] 4
  • nodes() returns all nodes in a graph.
nodes(graph)
#> # of nodes: 4
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> |             c             |
#> |             d             |
  • children() returns the children of a specific node in a graph.
children(graph, node = "a")
#> # of nodes: 2
#> |           Nodes           |
#> |             b             |
#> |             c             |
  • parents() returns the parents of a specific node in a graph.
parents(graph, node = "d")
#> # of nodes: 2
#> |           Nodes           |
#> |             b             |
#> |             c             |

Analyze

find_path(graph, from = "a", to = "d")
#> # of nodes: 3
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> |             d             |
find_all_paths(graph, from = "a", to = "d")
#> [[1]]
#> # of nodes: 3
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> |             d             |
#> 
#> 
#> [[2]]
#> # of nodes: 3
#> |           Nodes           |
#> |             a             |
#> |             c             |
#> |             d             |
find_path_one_to_many(acyclic_graph, from = "a", to = edges$child)
#> [[1]]
#> # of nodes: 2
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> 
#> 
#> [[2]]
#> # of nodes: 2
#> |           Nodes           |
#> |             a             |
#> |             c             |
#> 
#> 
#> [[3]]
#> # of nodes: 3
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> |             d             |
#> 
#> 
#> [[4]]
#> # of nodes: 3
#> |           Nodes           |
#> |             a             |
#> |             b             |
#> |             d             |
get_all_leaves(graph)
#> # of nodes: 1
#> |           Nodes           |
#> |             d             |
get_all_roots(graph)
#> # of nodes: 1
#> |           Nodes           |
#> |             a             |
get_leaves_under(graph, node = "a")
#> # of nodes: 1
#> |           Nodes           |
#> |             d             |
get_roots_over(graph, node = "d")
#> # of nodes: 1
#> |           Nodes           |
#> |             a             |
least_common_parents(graph, selected = c("d", "c"))
#> # of nodes: 1
#> |           Nodes           |
#> |             c             |