Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

set_graph_directed

Convert an undirected graph to a directed graph


Description

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

Usage

set_graph_directed(graph)

Arguments

graph

A graph object of class dgr_graph.

Value

A graph object of class dgr_graph.

Examples

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

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

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

DiagrammeR

Graph/Network Visualization

v1.0.6.1
MIT + file LICENSE
Authors
Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.