
Detect communities in a graph
detect_communities.RdPOST a graph (nodes + edges) to the server for community detection.
Value
A tibble::tibble() with columns node_id and community_id.
Examples
if (FALSE) { # \dontrun{
detect_communities(
nodes = c("A", "B", "C"),
edges = data.frame(source = c("A", "B"), target = c("B", "C"))
)
} # }