is_graph_directed {DiagrammeR}R Documentation

Is the graph a directed graph?

Description

Determines whether a graph is set to be directed or not and returns a logical value to that effect.

Usage

is_graph_directed(graph)

Arguments

graph

a graph object of class dgr_graph.

Value

a logical value.

Examples

## Not run: 
# Create a graph with nodes and edges
nodes <-
  create_nodes(nodes = c("a", "b", "c", "d"))

edges <-
  create_edges(from = c("a", "b", "c"),
               to = c("d", "c", "a"))

graph <-
  create_graph(nodes_df = nodes,
               edges_df = edges)

# Determine whether the graph is directed
is_graph_directed(graph)
#> [1] TRUE

## End(Not run)

[Package DiagrammeR version 0.8.2 Index]