Compute a bipartite clustering coefficient for nodes.
The bipartie clustering coefficient is a measure of local density of connections defined as [R145]:
where are the second order neighbors of in excluding , and is the pairwise clustering coefficient between nodes and .
The mode selects the function for which can be:
:
:
:
Parameters : | G : graph
nodes : list or iterable (optional)
mode : string
|
---|---|
Returns : | clustering : dictionary
|
See also
robins_alexander_clustering, square_clustering, average_clustering
References
[R145] | (1, 2) Latapy, Matthieu, Clémence Magnien, and Nathalie Del Vecchio (2008). Basic notions for the analysis of large two-mode networks. Social Networks 30(1), 31–48. |
Examples
>>> from networkx.algorithms import bipartite
>>> G = nx.path_graph(4) # path graphs are bipartite
>>> c = bipartite.clustering(G)
>>> c[0]
0.5
>>> c = bipartite.clustering(G,mode='min')
>>> c[0]
1.0