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)
weighted : bool, optional (default=False)
|
---|---|
Returns: | nd : dictionary, or number
|
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}
>>> G.degree([0,1]).values()
[1, 2]