NetworkX

Previous topic

networkx.MultiGraph.degree

Next topic

networkx.MultiGraph.size

networkx.MultiGraph.degree_iter

MultiGraph.degree_iter(nbunch=None, weighted=False)

Return an iterator for (node, degree).

The node degree is the number of edges adjacent 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, degree).

See also

degree

Examples

>>> G = nx.Graph()   # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_path([0,1,2,3])
>>> list(G.degree_iter(0)) # node 0 with degree 1
[(0, 1)]
>>> list(G.degree_iter([0,1]))
[(0, 1), (1, 2)]