Last chance! 50% off unlimited learning
Sale ends in
Hubbell centrality defined as:
hubbell(graph, vids = V(graph), weights = NULL, weightfactor = 0.5)
The input graph as igraph object
Vertex sequence, the vertices for which the centrality values are returned. Default is all vertices.
Possibly a numeric vector giving edge weights. If this is NULL, the default, and the graph has a weight edge attribute, then the attribute is used. If this is NA then no weights are used (even if the graph has a weight attribute).
The weight factorLogical which must be greater than 0. The defualt is 0.5.
A numeric vector contaning the centrality scores for the selected vertices.
This centrality value is defined by means of a weighted and loop allowed network. The weighted adjacency matrix
Hubbell, Charles H. "An input-output approach to clique identification." Sociometry (1965): 377-399.
Grabler, Johannes, Dirk Koschutzki, and Falk Schreiber. "CentiLib: comprehensive analysis and exploration of network centralities." Bioinformatics 28.8 (2012): 1178-1179.
# NOT RUN {
g <- barabasi.game(100)
hubbell(g)
# }
Run the code above in your browser using DataLab