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

count_s_connected_cmpts

Get the number of strongly-connected components


Description

Get the number of strongly-connected components in the graph.

Usage

count_s_connected_cmpts(graph)

Arguments

graph

A graph object of class dgr_graph.

Value

A single integer value representing the number of strongly-connected graph components.

Examples

# Create a graph and add
# several graph islands
graph <-
  create_graph() %>%
  add_islands_graph(
    n_islands = 4,
    island_size = 10,
    p = 1/5,
    edges_between = 1,
    set_seed = 23)

# Get a count of strongly-connected
# components in the graph
graph %>% count_s_connected_cmpts()

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.