getting edge labels in a digraph to display properly
I am new to Sage, and I am trying to get the program to display labeled digraphs the way that I want them. I give Sage the code:
sage: g = DiGraph({0:{1:'x',2:'z',3:'a'}, 2:{5:'out'}});
sage: g.show(edge_labels=True)
When I do this, the graph is displayed with the edge labels, but the labels appear right on top of the edges, which makes the labels hard to read. How do I get the program to display the edge labels right next to the edge, rather than on them? Any help will be appreciated.