grinpy.functions.degree.number_of_min_degree_nodes

grinpy.functions.degree.number_of_min_degree_nodes(G)

Return the number of nodes of the graph with degree equal to the minimum degree of the graph.

Parameters:G (NetworkX graph) – An undirected graph.
Returns:The number of nodes in the graph with degree equal to the minimum degree.
Return type:int

Examples

>>> G = nx.path_graph(3) # Path on 3 nodes
>>> nx.number_of_min_degree_nodes(G)
2