Description Usage Arguments Details Value Author(s) References Examples
The cross-clique connectivity X(v) of a node is the number of cliques to which belongs. A node with a high X(v) value is called a highly cross-connected node.
1 | crossclique(graph, vids = V(graph))
|
graph |
The input graph as igraph object |
vids |
Vertex sequence, the vertices for which the centrality values are returned. Default is all vertices. |
Note: Directed graph considered as undirected ones and multiple edges and loops are ignored.
More detail at Cross-Clique Connectivity
A numeric vector contaning the centrality scores for the selected vertices.
Mahdi Jalili m_jalili@farabi.tums.ac.ir
Faghani, M., and U. Nguyen. "A Study of XSS Worm Propagation and Detection Mechanisms in Online Social Networks." (2013): 1-1.
1 2 | g <- graph(c(1,2,2,3,3,4,4,2), directed=FALSE)
crossclique(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.