Rich-club coefficient

From HandWiki

The rich-club coefficient is a metric on graphs and networks, designed to measure the extent to which well-connected nodes also connect to each other. Networks which have a relatively high rich-club coefficient are said to demonstrate the rich-club effect and will have many connections between nodes of high degree. The rich-club coefficient was first introduced in 2004 in a paper studying Internet topology.[1][2]

The "Rich-club" effect has been measured and noted on scientific collaboration networks and air transportation networks. It has been shown to be significantly lacking on protein interaction networks.

Definition

Non-normalized form

The rich-club coefficient was first introduced as an unscaled metric parametrized by node degree ranks.[1] More recently, this has been updated to be parameterized in terms of node degrees k , indicating a degree cut-off. The rich-club coefficient for a given network N is then defined as:

[math]\displaystyle{ \phi(k) = \frac{2E_{\gt k}}{N_{\gt k}(N_{\gt k} - 1)} }[/math]

 

 

 

 

(1)

[3][4][5]

where [math]\displaystyle{ E_{\gt k} }[/math] is the number of edges between the nodes of degree greater than or equal to k, and [math]\displaystyle{ N_{\gt k} }[/math] is the number of nodes with degree greater than or equal to k. This measures how many edges are present between nodes of degree at least k, normalized by how many edges there could be between these nodes in a complete graph. When this value is close to 1 for values of k close to [math]\displaystyle{ k_{max} }[/math], it is interpreted that high degree nodes of the network are well connected. The associated subgraph of nodes with degree at least k is also called the "Rich Club" graph.

Normalized for topology randomization

A criticism of the above metric is that it does not necessarily imply the existence of the rich-club effect, as it is monotonically increasing even for random networks. In certain degree distributions, it is not possible to avoid connecting high degree hubs. To account for this, it is necessary to compare the above metric to the same metric on a degree distribution preserving randomized version of the network. This updated metric is defined as:

[math]\displaystyle{ \rho_{rand}(k) = \frac{\phi(k)}{\phi_{rand}(k)} }[/math]

 

 

 

 

(2)

where [math]\displaystyle{ \phi_{rand}(k) }[/math] is the rich-club metric on a maximally randomized network with the same degree distribution [math]\displaystyle{ P(k) }[/math] of the network under study. This new ratio discounts unavoidable structural correlations that are a result of the degree distribution, giving a better indicator of the significance of the rich-club effect.

For this metric, if for certain values of k we have [math]\displaystyle{ \rho_{rand}(k) \gt 1 }[/math] , this denotes the presence of the rich-club effect.

Generalizations

General richness properties

The natural definition of a node's "richness" is its number of neighbours. If instead we replace this with a generic richness metric on nodes r, then we can rewrite the unscaled Rich-Club coefficient as:

[math]\displaystyle{ \phi(r) = \frac{2E_{\gt r}}{N_{\gt r}(N_{\gt r} - 1)} }[/math]

 

 

 

 

(3)

Where we are instead considering the sub graph on only nodes with a richness measure of at least r. For example, on scientific collaboration networks, replacing the degree richness (number of coauthors) with a strength richness (number of published papers), the topology of the rich club graph changes dramatically.

Related metrics

Assortativity

The Assortativity of a network is a measurement of how connected similar nodes are, where similarity is typically viewed in terms of node degree. Rich-club can be viewed as a more specific notation of assortativity, where we are only concerned with the connectivity of nodes beyond a certain richness metric. For example, if a network consisted of a collection of hub and spokes, where the hubs were well connected, such a network would be considered disassortative. However, due to the strong connectedness of the hubs in the network, the network would demonstrate the rich-club effect.

An example of a network which is both disassortative and demonstrates the Rich Club effect. The red nodes are hubs and form the "Rich Club."

Applications

The rich-club coefficient of a network is useful as a heuristic measurement of the robustness of a network. A high rich-club coefficient implies that the hubs are well connected, and global connectivity is resilient to any one hub being removed. It is also useful for verifying theories that generalize to other networks. For example, the consistent observation of high rich-club coefficients for scientific collaboration networks adds evidence to the theory that within social groups, the elite tend to associate with one another.

Implementations

The rich-club coefficient has been implemented in NetworkX, a Python library for network analysis. This implementation includes both the non-normalized and normalized forms as described above.

See also

References

  1. 1.0 1.1 Zhou, Shi; Mondragón, Raúl J. (2004). "The Rich-Club Phenomenon In The Internet Topology". IEEE Communications Letters 8 (3): 180–182. doi:10.1109/lcomm.2004.823426. 
  2. Mattia Gasparini, Javier Luis Canovas Izquierdo, Robert Clariso, Marco Brambilla, Jordi Cabot: Analyzing Rich-Club Behavior in Open Source Projects. OpenSym 2019 proceedings
  3. Colizza, V. and Flammini, A. and Serrano, M. A. and Vespignani, A. (2006). "Detecting rich-club ordering in complex networks". Nature Physics. 2 2 (2): 110–115. doi:10.1038/nphys209. Bibcode2006NatPh...2..110C. 
  4. McAuley, Julian J. and da Fontoura Costa, Luciano and Caetano, Tibério S. (2007). "Rich-club phenomenon across complex network hierarchies". Applied Physics Letters 91 (8): 084103. doi:10.1063/1.2773951. Bibcode2007ApPhL..91h4103M. 
  5. Opsahl, Tore; Colizza, Vittoria; Panzarasa, Pietro; Ramasco, José J. (2008). "Prominence and Control: The Weighted Rich-Club Effect". Physical Review Letters 101 (16): 168702. doi:10.1103/physrevlett.101.168702. PMID 18999722. Bibcode2008PhRvL.101p8702O. 

External links