|  1 |    initial version    |  
Sir, With the data of buses(nodes) and lines(edges) you can plot the network plot using networkx library of python.
example:
import networkx as net
buses = ["101","102","103","104","105"]
lines = [("101","102"),("102","103"), ("102","104"),("103","105") ]
G = net.Graph()
G.add_nodes_from(buses)
G.add_edges_from(lines)
net.draw(G,with_labels=True)
 you will get the neat network plot without psse in python
 
                
                whit loves you.      Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.