set_graph_undirected: Convert a directed graph to an undirected graph

View source: R/set_graph_undirected.R

set_graph_undirectedR Documentation

Convert a directed graph to an undirected graph

Description

Take a graph which is directed and convert it to an undirected graph.

Usage

set_graph_undirected(graph)

Arguments

graph

A graph object of class dgr_graph.

Value

A graph object of class dgr_graph.

Examples

# Create a graph with a
# directed tree
graph <-
  create_graph() %>%
  add_balanced_tree(
    k = 2, h = 2)

# Convert this graph from
# directed to undirected
graph <-
  graph %>%
  set_graph_undirected()

# Perform a check on whether
# graph is directed
graph %>% is_graph_directed()


DiagrammeR documentation built on May 31, 2023, 6:14 p.m.