grinpy.functions.number_of_min_degree_nodes

grinpy.functions.number_of_min_degree_nodes(G)

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

G : graph
A NetworkX graph.
numNodes : int
The number of nodes in the graph with degree equal to the minimum degree.

number_of_nodes_of_degree_k, number_of_leaves, number_of_max_degree_nodes, min_degree

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