Warning
This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.
average_clustering¶
-
average_clustering
(G, nodes=None, mode='dot')[source]¶ Compute the average bipartite clustering coefficient.
A clustering coefficient for the whole graph is the average,
where is the number of nodes in .
Similar measures for the two bipartite sets can be defined [1]
where is a bipartite set of .
Parameters: - G (graph) – a bipartite graph
- nodes (list or iterable, optional) – A container of nodes to use in computing the average. The nodes should be either the entire graph (the default) or one of the bipartite sets.
- mode (string) – The pariwise bipartite clustering method. It must be “dot”, “max”, or “min”
Returns: clustering – The average bipartite clustering for the given set of nodes or the entire graph if no nodes are specified.
Return type: Examples
>>> from networkx.algorithms import bipartite >>> G=nx.star_graph(3) # star graphs are bipartite >>> bipartite.average_clustering(G) 0.75 >>> X,Y=bipartite.sets(G) >>> bipartite.average_clustering(G,X) 0.0 >>> bipartite.average_clustering(G,Y) 1.0
See also
Notes
The container of nodes passed to this function must contain all of the nodes in one of the bipartite sets (“top” or “bottom”) in order to compute the correct average bipartite clustering coefficients.
References
[1] 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.