Contents
Reference
Graph.
order
Returns the number of nodes in the graph.
nnodes – The number of nodes in the graph.
int
See also
number_of_nodes, __len__
number_of_nodes
__len__
Examples
>>> G = nx.path_graph(3) # or DiGraph >>> G.order() 3