GetOutDegCnt¶
- GetOutDegCnt(Graph, DegToCntV)¶
Computes an out-degree histogram: a vector of pairs (out-degree, number of nodes of such out-degree). The results are stored in DegToCntV.
Parameters:
- Graph: graph (input)
A Snap.py graph or a network.
- DegToCntV: TIntPrV, a vector of (int, int) pairs (output)
A vector of (out-degree, number of nodes of such out-degree) pairs.
Return value:
- None
The following examples shows how to obtain the out-degree histogram for nodes in TNGraph, TUNGraph, and TNEANet:
import snap
Graph = snap.GenRndGnm(snap.PNGraph, 100, 1000)
DegToCntV = snap.TIntPrV()
snap.GetOutDegCnt(Graph, DegToCntV)
for item in DegToCntV:
print "%d nodes with out-degree %d" % (item.GetVal1(), item.GetVal2())
UGraph = snap.GenRndGnm(snap.PUNGraph, 100, 1000)
DegToCntV = snap.TIntPrV()
snap.GetOutDegCnt(UGraph, DegToCntV)
for item in DegToCntV:
print "%d nodes with out-degree %d" % (item.GetVal1(), item.GetVal2())
Network = snap.GenRndGnm(snap.PNEANet, 100, 1000)
DegToCntV = snap.TIntPrV()
snap.GetOutDegCnt(Network, DegToCntV)
for item in DegToCntV:
print "%d nodes with out-degree %d" % (item.GetVal1(), item.GetVal2())