crossclique {centiserve} | R Documentation |
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.
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.
g <- graph(c(1,2,2,3,3,4,4,2), directed=FALSE) crossclique(g)