Betweenness centrality

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Betweenness centrality is an indicator of a node's centrality in a network. It is equal to the number of shortest paths from all vertices to all others that pass through that node. A node with high betweenness centrality has a large influence on the transfer of items through the network, under the assumption that item transfer follows the shortest paths. The concept finds wide application, including computer and social networks, biology, transport and scientific cooperation. Development of betweenness centrality is generally attributed to sociologist Linton Freeman.[1] The idea was earlier proposed by mathematician J. Anthonisse, but his work was never published.[2]

Definition

The betweenness centrality of a node v is given by the expression:

g(v)= \sum_{s \neq v \neq t}\frac{\sigma_{st}(v)}{\sigma_{st}}

where \sigma_{st} is the total number of shortest paths from node s to node t and \sigma_{st}(v) is the number of those paths that pass through v.

Note that the betweenness centrality of a node scales with the number of pairs of nodes as implied by the summation indices. Therefore the calculation may be rescaled by dividing through by the number of pairs of nodes not including v, so that g \in [0,1]. The division is done by (N-1)(N-2) for directed graphs and (N-1)(N-2)/2 for undirected graphs, where N is the number of nodes in the giant component. Note that this scales for the highest possible value, where one node is crossed by every single shortest path. This is often not the case, and a normalization can be performed without a loss of precision

\mbox{normal}(g(v)) = \frac{g(v) - \min(g)}{\max(g) - \min(g)}

which results in:

\max(normal) = 1
\min(normal) = 0

Note that this will always be a scaling from a smaller range into a larger range, so no precision is lost.

The load distribution in real and model networks

Model networks

It has been shown that the load distribution of a scale-free network follows a power law given by a load exponent \delta,[3]

P(g) \approx g^{-\delta} (1)

this implies the scaling relation to the degree of the node,

g(k) \approx k^\eta.

Where g(k) is the average load of vertices with degree k. The exponents \delta and \eta are not independent since equation (1) implies [4]

P(g)= \int P(k) \delta (g-k^\eta) dk

For large g, and therefore large k, the expression becomes

P(g\gg1)= \int k^{-\gamma} \delta (g-k^\eta) dk
\sim g^{-1-\frac{\gamma -1}{\eta}}

which proves the following equality:

\eta=\frac{\gamma -1}{\delta -1}

The important exponent appears to be \eta which describes how the betweenness centrality depends on the connectivity. The situation which maximizes the betweenness centrality for a vertex is when all shortest paths are going through it, which corresponds to a tree structure (a network with no clustering). In the case of a tree network the maximum value of \eta = 2 is reached.[4]

\eta = 2 \rarr \delta = \frac{\gamma +1}{2}

This maximal value of \eta (and hence minimum of \delta) puts bounds on the load exponents for networks with non-vanishing clustering.

\eta \le 2 \rarr \delta \ge \frac{\gamma +1}{2}

In this case, the exponents \delta , \eta are not universal and depend on the different details (average connectivity, correlations, etc.)

Real networks

Real world scale free networks, such as the internet, also follow a power law load distribution.[5] This is an intuitive result. Scale free networks arrange themselves to create short path lengths across the network by creating a few hub nodes with much higher connectivity than the majority of the network. These hubs will naturally experience much higher loads because of this added connectivity.

Weighted networks

In a weighted network the links connecting the nodes are no longer treated as binary interactions, but are weighted in proportion to their capacity, influence, frequency, etc., which adds another dimension of heterogeneity within the network beyond the topological effects. A node's strength in a weighted network is given by the sum of the weights of its adjacent edges.

s_{i} = \sum_{j=1}^{N} a_{ij}w_{ij}

With a_{ij} and w_{ij} being adjacency and weight matrices between nodes i and j, respectively. Analogous to the power law distribution of degree found in scale free networks, the strength of a given node follows a power law distribution as well.

s(k) \approx k^\beta \,

A study of the average value s(b) of the strength for vertices with betweenness b shows that the functional behavior can be approximated by a scaling form [6]

s(b)\approx b^{\alpha}

Algorithms

Calculating the betweenness and closeness centralities of all the vertices in a graph involves calculating the shortest paths between all pairs of vertices on a graph, which takes \Theta(|V|^3) time with the Floyd–Warshall algorithm, modified to not only find one but count all shortest paths between two nodes. On a sparse graph, Johnson's algorithm may be more efficient, taking O(|V|^2 \log |V| + |V| |E|) time. On unweighted graphs, calculating betweenness centrality takes O(|V| |E|) time using Brandes' algorithm.[7]

In calculating betweenness and closeness centralities of all vertices in a graph, it is assumed that graphs are undirected and connected with the allowance of loops and multiple edges. When specifically dealing with network graphs, often 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.[7]

Another algorithm generalizes the Freeman's betweenness computed on geodesics and Newman's betweenness computed on all paths, by introducing a hyper-parameter controlling the trade-off between exploration and exploitation. The time complexity is the number of edges times the number of nodes in the graph.[8]

The concept of centrality was extended to a group level as well.[9] Group betweenness centrality shows the proportion of geodesics connecting pairs of non-group members that pass through a group of nodes. Brandes' algorithm for computing the betweenness centrality of all vertices was modified to compute the group betweenness centrality of one group of nodes with the same asymptotic running time.[9]

Related concepts

Betweenness centrality is related to a network's connectivity, in so much as high betweenness vertices have the potential to disconnect graphs if removed (see cut set) .

See also

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 M. Barthélemy. Betweenness centrality in large complex networks. Eur. Phys. J. B 38, 163–168 (2004)
  5. Kwang-Il Goh, Eulsik Oh, Hawoong Jeong, Byungnam Kahng, and Doochul Kim. Classification of scale-free networks. PNAS (2002) vol. 99 no. 2
  6. A. Barrat, M. Barthelemy, R. Pastor-Satorras, and A. Vespignani. The architecture of complex weighted networks. PNAS (2004) vol. 101 no. 11
  7. 7.0 7.1 Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. 9.0 9.1 Puzis, R., Yagil, D., Elovici, Y., Braha, D. (2009)Collaborative attack on Internet users’ anonymity, Internet Research 19(1)