is_graph_connected: Is the graph a connected graph?

View source: R/is_graph_connected.R

is_graph_connectedR Documentation

Is the graph a connected graph?

Description

Determines whether a graph is a connected graph.

Usage

is_graph_connected(graph)

Arguments

graph

A graph object of class dgr_graph.

Value

A logical value.

Examples

# Create a random graph using the
# `add_gnm_graph()` function; this
# graph is not connected
create_graph() %>%
  add_gnm_graph(
    n = 15,
    m = 10,
    set_seed = 23) %>%
  is_graph_connected()

# Create another random graph;
# this graph is connected
create_graph() %>%
  add_gnm_graph(
    n = 10,
    m = 15,
    set_seed = 23) %>%
  is_graph_connected()


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