NetworkX

Previous topic

networkx.DiGraph.in_degree

Next topic

networkx.DiGraph.out_degree

networkx.DiGraph.in_degree_iter

DiGraph.in_degree_iter(nbunch=None, weighted=False)

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)

A container of nodes. The container will be iterated through once.

weighted : bool, optional (default=False)

If True return the sum of edge weights adjacent to the node.

Returns :

nd_iter : an iterator

The iterator returns two-tuples of (node, in-degree).

Examples

>>> G = nx.DiGraph()
>>> 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)]