[sage-devel] OpenDreamKit question

2015-06-28 Thread Ralf Stephan
Hello, I understand the jobs are funded to improve usability, mainly. I have categorized the last 110 questions on ask.sagemath and these are the components affected, sorted: symbolics 22 algebra14 build/install 12 plotting/graphics 11 linear algebra 10 packages: sta

[sage-devel] Drawing extra lines on a sage tree graph

2015-06-28 Thread Hannah Lorrimore
Hi, I'm doing some sage developement for the first time, and my code involves creating a Graph from a dictionary (d) I generate. So the code is: sage: t = Graph(d) sage: tree_plot = t.plot(layout='tree', tree_orientation='right', edge_labels=True, tree_root = tree_root) where tree_root is so

[sage-devel] Re: Drawing extra lines on a sage tree graph

2015-06-28 Thread Frédéric Chapoton
Hello Please note that this kind of question should rather be asked on ask.sagemath.org. You can use the methods get_pos and set_pos sage: t=graphs.RandomTree(40) sage: tp=t.plot(layout='tree', tree_orientation='right', edge_labels=True, tree_root = 0,save_pos=True) sage: positions = t.get_pos

[sage-devel] Re: Drawing extra lines on a sage tree graph

2015-06-28 Thread Hannah Lorrimore
Ok, thank you very much :) -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post to this group, send email to sage-devel