Return the out-degree of a node or nodes.
The node out-degree is the number of edges pointing out of the node.
Parameters: | nbunch : iterable container, optional (default=all nodes)
weighted : bool, optional (default=False)
|
---|---|
Returns: | nd : dictionary, or number
|
Examples
>>> G = nx.DiGraph() # or MultiDiGraph
>>> G.add_path([0,1,2,3])
>>> G.out_degree(0)
1
>>> G.out_degree([0,1])
{0: 1, 1: 1}
>>> G.out_degree([0,1]).values()
[1, 1]