View source: R/visClustering.R
visClusteringByHubsize | R Documentation |
Network visualization clustering options - by hubsize
visClusteringByHubsize(graph, size = NULL)
graph |
: a visNetwork object |
size |
: Integer. This method checks all nodes in the network and those with a equal or higher amount of edges than specified with size argument. If size is null (default), the size will be determined as the average value plus two standard deviations. |
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) %>% visClusteringByHubsize() visNetwork(nodes, edges) %>% visClusteringByHubsize(size = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.