| simmelian_strength | R Documentation |
Convenience wrapper around edge_centrality that returns only
the triangle count per edge, sorted descending.
simmelian_strength(x, top = NULL, directed = NULL, digits = NULL, ...)
x |
Network input: matrix, igraph, network, cograph_network, or tna object. |
top |
Integer or NULL. Return only the top N edges. Default NULL. |
directed |
Logical or NULL. Default NULL (auto-detect). |
digits |
Integer or NULL. Round numeric columns. Default NULL. |
... |
Additional arguments passed to |
A data frame sorted by triangles (descending) with columns:
from, to, weight (if weighted), triangles.
edge_centrality, neighborhood_overlap
k4 <- matrix(1, 4, 4); diag(k4) <- 0
rownames(k4) <- colnames(k4) <- c("A", "B", "C", "D")
cograph::simmelian_strength(k4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.