View source: R/get_w_connected_cmpts.R
| get_w_connected_cmpts | R Documentation | 
Determine which nodes in a graph belong to different weakly connected components (i.e., distinct sets of nodes with traversable paths to and from each node in the set).
get_w_connected_cmpts(graph)
graph | 
 A graph object of class   | 
A data frame with nodes and their membership in different weakly connected components.
# Create a graph with 2 cycles
graph <-
  create_graph() %>%
  add_cycle(n = 4) %>%
  add_cycle(n = 3)
# Check if the graph is connected
graph %>%
  is_graph_connected()
# Get the graph's weakly-connected
# components
graph %>% get_w_connected_cmpts()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.