It's about search engines (SE). I'm trying to represent distances between one SE and the others with graphs. I labelled them:
DG.add_edge(se1, se2, length=distance[se1][se2])
Then to label the edges
nx.draw_networkx_edge_labels(DG, pos=pos, font_size=8)
but outputs are quite incoherents :
Sample
[('AllTheInternet', 'Yippy', {'length': 0.727}),
('AOL', 'Yippy', {'length': 0.446}),
('Ask', 'Yippy', {'length': 0.88}),
('Bing', 'Yippy', {'length': 0.765}),
('DirectHit', 'Yippy', {'length': 0.733}),
('Duckduckgo', 'Yippy', {'length': 0.795}),
('Ecosia', 'Yippy', {'length': 0.793}),
('Google', 'Yippy', {'length': 0.852}),
('Lilo', 'Yippy', {'length': 0.43}),
('Lycos', 'Yippy', {'length': 0.766}),
('Qwant', 'Yippy', {'length': 0.834}),
('Startpage', 'Yippy', {'length': 0.77}),
('Teoma', 'Yippy', {'length': 0.776}),
('Yahoo', 'Yippy', {'length': 0.445})]