I'm still having problem in displaying the label of the edges using DiGraph. I have read more from this group and tried:
G=DiGraph({1:{1:['hola','hi'], 2:['two','dos']},2:{1:['one']}}, loops=True, multiedges=True) G.edges() [(1, 1, 'hi'), (1, 1, 'hola'), (1, 2, 'dos'), (1, 2, 'two'), (2, 1, 'one')] G.show() I expect to see two loops from 1 to 1 labeled by 'hola' and 'hi', etc... but the result of G.show() only show one loop and no lables on the edges. Can someone tell me what am I missing? Thanks in advance On Sep 23, 9:15 pm, pong <[EMAIL PROTECTED]> wrote: > I tried one of the examples (example 3 inDiGraph?) > > g =DiGraph({0:{1:'x',2:'z',3:'a'}, 2:{5:'out'}}, > implementation='networkx'); show(g) > > However, I don't see any label of the edges, why? > > Also, I think theDiGraphfunction is very useful for drawing finite > automata (thanks!) My question is: does it support loop to a node? > (which is essential in drawing automata) --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---