Plotting the clustering coefficient and degree distribution

Hi
I tried to get the local clustering coefficient for all the vertices and it
returned a property map. I'll be glad if you could tell me how to import
data from it and plot it
SHubham

attachment.html (388 Bytes)

Hi,

You can access the data within the PropertyMap as a numpy array through
the `.a` attribute, and do something like:

plt.figure()
plt.hist(v_prop.a)

Guillaume

attachment.html (1.57 KB)