Writing your own code: average neighbours’ degree
• Compute the average degree of each node’s neighbours:
• And the more compact version in a single line:
def avg_neigh_degree(g):
data = {}
for n in g.nodes():
if g.degree(n):
data[n] = float(sum(g.degree(i) for i in g[n]))/g.degree(n)
return data
def avg_neigh_degree(g):
return dict((n,float(sum(g.degree(i) for i in g[n]))/ g.degree(n))
for n in g.nodes() if g.degree(n))
42
What you
have learnt today
• How to create graphs from scratch, with generators and by loading local data
• How to compute basic network measures, how they are stored in NetworkX and
how to manipulate them with list comprehension
• How to load/store NetworkX data from/to files
• How to use matplotlib to visualize and plot results (useful for final report!)
• How to use and include NetworkX features to design your own algorithms
44