View source: R/cluster-metrics.R
| verify_with_igraph | R Documentation |
Confirms numerical match with igraph's contract_vertices + simplify.
verify_with_igraph(x, clusters, method = "sum", type = "raw")
verify_igraph(x, clusters, method = "sum", type = "raw")
x |
Adjacency matrix |
clusters |
Cluster specification |
method |
Aggregation method |
type |
Normalization type. Defaults to "raw" for igraph compatibility. |
List with comparison results
if (requireNamespace("igraph", quietly = TRUE)) {
mat <- matrix(runif(100), 10, 10)
diag(mat) <- 0
rownames(mat) <- colnames(mat) <- LETTERS[1:10]
clusters <- c(1,1,1,2,2,2,3,3,3,3)
verify_igraph(mat, clusters)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.