networkx.algorithms.distance_measures.diameter¶
-
diameter
(G, e=None, usebounds=False)[source]¶ Returns the diameter of the graph G.
The diameter is the maximum eccentricity.
- Parameters
G (NetworkX graph) – A graph
e (eccentricity dictionary, optional) – A precomputed dictionary of eccentricities.
- Returns
d – Diameter of graph
- Return type
integer
See also