NetworkX

Previous topic

networkx.DiGraph.degree_iter

Next topic

networkx.DiGraph.in_degree_iter

networkx.DiGraph.in_degree

DiGraph.in_degree(nbunch=None, with_labels=False, weighted=False)

Return the in-degree of a node or nodes.

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.

with_labels : bool, optional (default=False)

If True return a dictionary of degrees keyed by node.

weighted : bool, optional (default=False)

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

Returns:

nd : list, or dictionary

A list of node in-degrees or a dictionary with nodes as keys and in-degree as values if with_labels=True).

Examples

>>> G = nx.DiGraph()   # or MultiDiGraph
>>> G.add_path([0,1,2,3])
>>> G.in_degree(0)
0
>>> G.in_degree([0,1])
[0, 1]
>>> G.in_degree([0,1],with_labels=True)
{0: 0, 1: 1}