count_w_connected_cmpts: Get the number of weakly-connected components

View source: R/count_w_connected_cmpts.R

count_w_connected_cmptsR Documentation

Get the number of weakly-connected components

Description

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

Usage

count_w_connected_cmpts(graph)

Arguments

graph

A graph object of class dgr_graph.

Value

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

Examples

# Create a cycle graph
graph <-
  create_graph() |>
  add_cycle(n = 5) |>
  add_cycle(n = 5)

# Get a count of weakly-connected
# components in the graph
graph |> count_w_connected_cmpts()


DiagrammeR documentation built on April 27, 2026, 5:06 p.m.