In Pythons graph_tool, is there an easy way to calculate the weighted degree distribution (sum of the weights on out-going, in-coming, or all edges)?
In the Stats package, vertex_hist gives the un-weighted in-degree, out-degree, and total-degree histograms, but there doesn't seem to be a way to get the weighted version of these.
Note: I am working with 31,000 vertices and >10 million edges. I am looking for a way to do this utilizing graph_tool as as much as possible.