Learn R Programming

visNetwork (version 0.1.1)

visClusteringByConnection: Network visualization clustering options - by node id

Description

Network visualization clustering options - by node id

Usage

visClusteringByConnection(graph, nodes)

Arguments

graph
: a visNetwork object
nodes
: Character/vector. gid of nodes we want to cluster

Examples

Run this code
set.seed(124)
nodes <- data.frame(id = 1:10, color = c(rep("blue", 6), rep("red", 3), rep("green", 1)))
edges <- data.frame(from = round(runif(6)*10), to = round(runif(6)*10))

 visNetwork(nodes, edges, legend = TRUE) %>%
   visClusteringByConnection(nodes = 9)

Run the code above in your browser using DataLab