Return an iterator for (node, in-degree).
The node in-degree is the number of edges pointing in to the node.
Parameters : | nbunch : iterable container, optional (default=all nodes)
weight : string or None, optional (default=None)
|
---|---|
Returns : | nd_iter : an iterator
|
See also
Examples
>>> G = nx.MultiDiGraph()
>>> G.add_path([0,1,2,3])
>>> list(G.in_degree_iter(0)) # node 0 with degree 0
[(0, 0)]
>>> list(G.in_degree_iter([0,1]))
[(0, 0), (1, 1)]