Centrality
In graph theory and network analysis, centrality of a vertex measures its relative importance within a graph. Applications include how influential a person is within a social network, how important a room is within a building (space syntax), and how well-used a road is within an urban network. There are four main measures of centrality: degree, betweenness, closeness, and eigenvector. Centrality concepts were first developed in social network analysis, and many of the terms used to measure centrality reflect their sociological origin.[1]
Definition and characterization of centrality indices
Next to the following classic centrality indices, there are dozens of other more specialized centrality indices. Despite its intuitive notion there is not yet a definition or characterization of centrality indices which captures all of them.[2] A very loose definition of a centrality index is the following:
A centrality index is a real-valued function on the nodes of a graph. It is a structural index, i.e., if and are two isomorphic graphs and is the mapping from the vertex set of to V(H), then the centrality of a vertex of must be the same as the centrality of in . Conventionally, the higher the centrality index of a node, the higher its perceived centrality in the graph.[3] This definition comprises all classic centrality measures but not all measures that fulfill this definition would be accepted as centrality indices.
Borgatti and Everett summarize that centrality indices measure the position of a node along a predefined set of walks. They characterize centrality indices along four dimensions: the set of walks, whether the length or the number of these walks is considered, the position of the node on the walks (at the start=radial; in the middle=medial), and how the numbers assigned to the paths are summarized in the measure (average, median, weighted sum, ...).[2] This leads to a characterization by the way a centrality index is calculated. In a different characterization, Borgatti differentiates the centrality indices by what type of paths they consider and which type of network flow they imply.[4] The latter characterizes the centrality indices by the quality with which they predict which node is most central for a given network flow process. This characterization thus provides guidance on when to use which centrality index.
Categorization
Reachability, Amount of flow, Vitality, Feedback; see.[5]
Degree centrality
Historically first and conceptually simplest is degree centrality, which is defined as the number of links incident upon a node (i.e., the number of ties that a node has). The degree can be interpreted in terms of the immediate risk of a node for catching whatever is flowing through the network (such as a virus, or some information). In the case of a directed network (where ties have direction), we usually define two separate measures of degree centrality, namely indegree and outdegree. Accordingly, indegree is a count of the number of ties directed to the node and outdegree is the number of ties that the node directs to others. When ties are associated to some positive aspects such as friendship or collaboration, indegree is often interpreted as a form of popularity, and outdegree as gregariousness.
The degree centrality of a vertex , for a given graph with vertices and edges, is defined as
Calculating degree centrality for all the nodes in a graph takes in a dense adjacency matrix representation of the graph, and for edges takes in a sparse matrix representation.
Sometimes the interest is in finding the centrality of a graph within a graph.
The definition of centrality on the node level can be extended to the whole graph. Let be the node with highest degree centrality in . Let be the node connected graph that maximizes the following quantity (with being the node with highest degree centrality in ):
Correspondingly, the degree centrality of the graph is as follows:
The value of is maximized when the graph contains one central node to which all other nodes are connected (a star graph), and in this case .
Closeness centrality
In connected graphs there is a natural distance metric between all pairs of nodes, defined by the length of their shortest paths. The farness of a node s is defined as the sum of its distances to all other nodes, and its closeness is defined as the inverse of the farness.[6][7] Thus, the more central a node is the lower its total distance to all other nodes. Closeness can be regarded as a measure of how long it will take to spread information from s to all other nodes sequentially.[8]
In the classic definition of the closeness centrality, the spread of information is modeled by the use of shortest paths. This model might not be the most realistic for all types of communication scenarios. Thus, related definitions have been discussed to measure closeness, like the random walk closeness centrality introduced by Noh and Rieger (2004). It measures the speed with which randomly walking messages reach a vertex from elsewhere in the network—a sort of random-walk version of closeness centrality.[9]
The information centrality of Stephenson and Zelen (1989) is another closeness measure, which bears some similarity to that of Noh and Rieger. In essence it measures the harmonic mean of the resistance distances towards a vertex i, which is smaller if i has many paths of small resistance connecting it to other vertices.[10]
Note that by definition of graph theoretic distances, the classic closeness centrality of all nodes in an unconnected graph would be 0. In a work by Dangalchev (2006) relating network vulnerability, the definition for closeness is modified such that it can be calculated more easily and can be also applied to graphs which lack connectivity:[11]
Another extension to networks with disconnected components has been proposed by Opsahl (2010),[12] and later studied by Boldi and Vigna (2013) [13] in general directed graphs:
The formula above, with the convention , defines harmonic centrality. It is a natural modification of Bavelas's definition of closeness following the general principle proposed by Marchiori and Latora (2000) [14] that in networks with infinite distances the harmonic mean behaves better than the arithmetic mean. Indeed, Bavelas's closeness can be described as the denormalized reciprocal of the arithmetic mean of distances, whereas harmonic centrality is the denormalized reciprocal of the harmonic mean of distances.
Betweenness centrality
Betweenness is a centrality measure of a vertex within a graph (there is also edge betweenness, which is not discussed here). Betweenness centrality quantifies the number of times a node acts as a bridge along the shortest path between two other nodes. It was introduced as a measure for quantifying the control of a human on the communication between other humans in a social network by Linton Freeman.[15] In his conception, vertices that have a high probability to occur on a randomly chosen shortest path between two randomly chosen vertices have a high betweenness.
The betweenness of a vertex in a graph with vertices is computed as follows:
- For each pair of vertices (s,t), compute the shortest paths between them.
- For each pair of vertices (s,t), determine the fraction of shortest paths that pass through the vertex in question (here, vertex v).
- Sum this fraction over all pairs of vertices (s,t).
More compactly the betweenness can be represented as:[16]
where is total number of shortest paths from node to node and is the number of those paths that pass through . The betweenness may be normalised by dividing through the number of pairs of vertices not including v, which for directed graphs is and for undirected graphs is . For example, in an undirected star graph, the center vertex (which is contained in every possible shortest path) would have a betweenness of (1, if normalised) while the leaves (which are contained in no shortest paths) would have a betweenness of 0.
From a calculation aspect, both betweenness and closeness centralities of all vertices in a graph involve calculating the shortest paths between all pairs of vertices on a graph, which requires time with the Floyd–Warshall algorithm. However, on sparse graphs, Johnson's algorithm may be more efficient, taking time. In the case of unweighted graphs the calculations can be done with Brandes' algorithm[16] which takes time. Normally, these algorithms assume that graphs are undirected and connected with the allowance of loops and multiple edges. When specifically dealing with network graphs, oftentimes graphs are without loops or multiple edges to maintain simple relationships (where edges represent connections between two people or vertices). In this case, using Brandes' algorithm will divide final centrality scores by 2 to account for each shortest path being counted twice.[16]
Eigenvector centrality
Eigenvector centrality is a measure of the influence of a node in a network. It assigns relative scores to all nodes in the network based on the concept that connections to high-scoring nodes contribute more to the score of the node in question than equal connections to low-scoring nodes. Google's PageRank is a variant of the Eigenvector centrality measure.[17] Another closely related centrality measure is Katz centrality.
Using the adjacency matrix to find eigenvector centrality
For a given graph with number of vertices let be the adjacency matrix, i.e. if vertex is linked to vertex , and otherwise. The centrality score of vertex can be defined as:
where is a set of the neighbors of and is a constant. With a small rearrangement this can be rewritten in vector notation as the eigenvector equation
In general, there will be many different eigenvalues for which an eigenvector solution exists. However, the additional requirement that all the entries in the eigenvector be positive implies (by the Perron–Frobenius theorem) that only the greatest eigenvalue results in the desired centrality measure.[18] The component of the related eigenvector then gives the centrality score of the vertex in the network. Power iteration is one of many eigenvalue algorithms that may be used to find this dominant eigenvector.[17] Furthermore, this can be generalized so that the entries in A can be real numbers representing connection strengths, as in a stochastic matrix.
Katz centrality and PageRank
Katz centrality [19] is a generalization of degree centrality. Degree centrality measures the number of direct neighbors, and Katz centrality measures the number of all nodes that can be connected through a path, while the contributions of distant nodes are penalized. Mathematically, it is defined as where is an attenuation factor in .
Katz centrality can be viewed as a variant of eigenvector centrality. Another form of Katz centrality is Compared to the expression of eigenvector centrality, is replaced by .
It is shown that [20] the principal eigenvector (associated with the largest eigenvalue of , the adjacency matrix) is the limit of Katz centrality as approaches from below.
PageRank satisfies the following equation where is the number of neighbors of node (or number of outbound links in a directed graph). Compared to eigenvector centrality and Katz centrality, one major difference is the scaling factor . Another difference between PageRank and eigenvector centrality is that the PageRank vector is a left hand eigenvector (note the factor has indices reversed).[21]
Centralization
The centralization of any network is a measure of how central its most central node is in relation to how central all the other nodes are.[22] The general definition of centralization for non-weighted networks was proposed by Linton Freeman (1979). Centralization measures then (a) calculate the sum in differences in centrality between the most central node in a network and all other nodes; and (b) divide this quantity by the theoretically largest such sum of differences in any network of the same size.[22] Thus, every centrality measure can have its own centralization measure. Defined formally, if is any centrality measure of point , if is the largest such measure in the network, and if is the largest sum of differences in point centrality for any graph of with the same number of nodes, then the centralization of the network is:[22]
Extensions
Empirical and theoretical research have extended the concept of centrality in the context of static networks to dynamic centrality[23] in the context of time-dependent and temporal networks.[24][25][26]
For generalizations to weighted networks, see Opsahl et al. (2010).[27]
The concept of centrality was extended to a group level as well. For example, Group Betweenness centrality shows the proportion of geodesics connecting pairs of non-group members that pass through the group.[28][29]
See also
Notes and references
- ↑ Newman, M.E.J. 2010. Networks: An Introduction. Oxford, UK: Oxford University Press.
- ↑ 2.0 2.1 Borgatti, Stephen P.; Everett, Martin G. (2005). "A Graph-Theoretic Perspective on Centrality". Social Networks (Elsevier) 28: 466–484. doi:10.1016/j.socnet.2005.11.005.
- ↑ Koschützki, Dirk; Katharina A. Lehmann, Leon Peeters, Stefan Richter, Dagmar Tenfelde-Podehl, Oliver Zlotowski (2005). "Centrality Indices". In Ulrik Brandes, Thomas Erlebach. Network Analysis – Methodological Foundations. LNCS 3418. Springer Verlag, Heidelberg, Germany. pp. 16–60. ISBN 978-3-540-24979-5.
- ↑ Stephen P. Borgatti (2005). "Centrality and Network Flow". Social Networks (Elsevier) 27: 55–71.
- ↑ Ulrik Brandes, Thomas Erlebach. Network Analysis – Methodological Foundations. LNCS 3418. Springer Verlag, Heidelberg, Germany. pp. 16–60. ISBN 978-3-540-24979-5.
- ↑ Alex Bavelas. Communication patterns in task-oriented groups. J. Acoust. Soc. Am, 22(6):725–730, 1950.
- ↑ Sabidussi, G. (1966) The centrality index of a graph. Psychometrika 31, 581–603.
- ↑ M.E.J. Newman (2005), "A measure of betweenness centrality based on random walks", Social Networks 27: 39–54, arXiv:cond-mat/0309045, doi:10.1016/j.socnet.2004.11.009. Papercore summary http://papercore.org/Newman2005.
- ↑ J. D. Noh and H. Rieger, Phys. Rev. Lett. 92, 118701 (2004).
- ↑ Stephenson, K. A. and Zelen, M., 1989. Rethinking centrality: Methods and examples. Social Networks 11, 1–37.
- ↑ Dangalchev Ch., Residual Closeness in Networks, Phisica A 365, 556 (2006).
- ↑ Tore Opsahl. Closeness centrality in networks with disconnected components.
- ↑ Boldi, Paolo; Vigna, Sebastiano (2014), "Axioms for Centrality", Internet Mathematics
- ↑ Massimo Marchiori and Vito Latora. Harmony in the small-world. Physica A: Statistical Mechanics and its Applications, 285(3-4):539 – 546, 2000
- ↑ Freeman, Linton (1977). "A set of measures of centrality based upon betweenness". Sociometry 40: 35–41.
- ↑ 16.0 16.1 16.2 Brandes, Ulrik (2001). "A faster algorithm for betweenness centrality" (PDF). Journal of Mathematical Sociology 25: 163–177. Retrieved 10.11.2011. Paperore summary http://papercore.org/Brandes2001
- ↑ 17.0 17.1 http://www.ams.org/samplings/feature-column/fcarc-pagerank
- ↑ M. E. J. Newman. The mathematics of networks (PDF). Retrieved 2006-11-09.
- ↑ Katz, L. 1953. A New Status Index Derived from Sociometric Index. Psychometrika, 39–43.
- ↑ Bonacich, P., 1991. Simultaneous group and individual centralities. Social Networks 13, 155–168.
- ↑ How does Google rank webpages? 20Q: About Networked Life
- ↑ 22.0 22.1 22.2 Freeman, L. C. (1979). Centrality in social networks: Conceptual clarification. Social Networks, 1(3), 215–239.
- ↑ Braha, D. and Bar-Yam, Y. 2006. "From Centrality to Temporary Fame: Dynamic Centrality in Complex Networks." Complexity 12: 59-63.
- ↑ Hill,S.A. and Braha, D. 2010. "Dynamic Model of Time-Dependent Complex Networks." Physical Review E 82, 046105.
- ↑ Gross, T. and Sayama, H. (Eds.). 2009. Adaptive Networks: Theory, Models and Applications. Springer.
- ↑ Holme, P. and Saramäki, J. 2013. Temporal Networks. Springer.
- ↑ Opsahl, Tore; Agneessens, Filip; Skvoretz, John (2010). "Node centrality in weighted networks: Generalizing degree and shortest paths". Social Networks 32 (3): 245. doi:10.1016/j.socnet.2010.03.006.
- ↑ Everett, M. G. and Borgatti, S. P. (2005). Extending centrality. In P. J. Carrington, J. Scott and S. Wasserman (Eds.), Models and methods in social network analysis (pp. 57-76). New York: Cambridge University Press.
- ↑ Puzis, R., Yagil, D., Elovici, Y., Braha, D. (2009).Collaborative attack on Internet users’ anonymity, Internet Research 19(1)
Further reading
- Freeman, L. C. (1979). Centrality in social networks: Conceptual clarification. Social Networks, 1(3), 215–239.
- Sabidussi, G. (1966). The centrality index of a graph. Psychometrika, 31 (4), 581–603.
- Freeman, L. C. (1977). A set of measures of centrality based on betweenness. Sociometry 40, 35–41.
- Koschützki, D.; Lehmann, K. A.; Peeters, L.; Richter, S.; Tenfelde-Podehl, D. and Zlotowski, O. (2005) Centrality Indices. In Brandes, U. and Erlebach, T. (Eds.) Network Analysis: Methodological Foundations, pp. 16–61, LNCS 3418, Springer-Verlag.
- Bonacich, P. (1987). Power and Centrality: A Family of Measures, The American Journal of Sociology, 92 (5), pp 1170–1182.
External links
- https://networkx.lanl.gov/trac/attachment/ticket/119/page_rank.py
- http://www.faculty.ucr.edu/~hanneman/nettext/C10_Centrality.html