Introducere în analiza rețelelor în Python
Eric Ma
Data Carpentry instructor and author of nxviz package
Exemple:
Sociale
Transport
Modelează relații între entități
Informații utile:
Entități importante: influenceri în rețele sociale
Găsirea căilor: traseul de transport optim
Grupare: identificarea comunităților




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()

Introducere în analiza rețelelor în Python