NetworkX

Previous topic

networkx.MultiGraph.__len__

Next topic

networkx.MultiGraph.degree_iter

networkx.MultiGraph.degree

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

Return the degree of a node or nodes.

The node degree is the number of edges adjacent to that 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 : dictionary, or number

A dictionary with nodes as keys and degree as values or a number if a single node is specified.

Examples

>>> G = nx.Graph()   # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_path([0,1,2,3])
>>> G.degree(0)
1
>>> G.degree([0,1])
{0: 1, 1: 2}
>>> list(G.degree([0,1]).values())
[1, 2]