Introductie tot netwerkanalyse in Python
Eric Ma
Data Carpentry instructor and author of nxviz package
Voorbeelden:
Sociaal
Transport
Modelleer relaties tussen entiteiten
Inzichten:
Belangrijke entiteiten: influencers in sociaal netwerk
Padzoeken: meest efficiënte transportroute
Clustering: communities vinden




import networkx as nxG = nx.Graph()G.add_nodes_from([1, 2, 3])G.nodes()
NodeView([1, 2, 3])
G.add_edge(1, 2)G.edges()
EdgeView([(1, 2)])
G.nodes[1]['label'] = 'blue'G.nodes(data=True)
[(1, {'label': 'blue'}), (2, {}), (3, {})]
nx.draw(G)import matplotlib.pyplot as plt plt.show()

Introductie tot netwerkanalyse in Python