#13891: Default parameters for Graph.plot() and Graph.show()
---------------------------------+------------------------------------------
       Reporter:  ncohen         |         Owner:  jason, ncohen, rlm           
         
           Type:  enhancement    |        Status:  needs_review                 
         
       Priority:  major          |     Milestone:  sage-5.7                     
         
      Component:  graph theory   |    Resolution:                               
         
       Keywords:                 |   Work issues:                               
         
Report Upstream:  N/A            |     Reviewers:  Punarbasu Purkayastha, 
Sébastien Labbé
        Authors:  Nathann Cohen  |     Merged in:                               
         
   Dependencies:  #13862         |      Stopgaps:                               
         
---------------------------------+------------------------------------------

Comment (by slabbe):

 One more point. This does not affect the result of plot:

 {{{
 sage: import sage.graphs.graph_plot
 sage: g = graphs.PetersenGraph()
 sage: sage.graphs.graph_plot.DEFAULT_SHOW_OPTIONS['figsize'] = 20
 sage: g.plot()
 sage: sage.graphs.graph_plot.DEFAULT_SHOW_OPTIONS['figsize'] = 2
 sage: g.plot()
 }}}

 One may say it is because I should use {{{DEFAULT_PLOT_OPTIONS}}} instead.
 But it is not the case. As the following is not affected by changing
 {{{DEFAULT_PLOT_OPTIONS}}} :

 {{{
 sage: import sage.graphs.graph_plot
 sage: g = graphs.PetersenGraph()
 sage: sage.graphs.graph_plot.DEFAULT_PLOT_OPTIONS['figsize'] = 2
 sage: g.plot()
 sage: sage.graphs.graph_plot.DEFAULT_PLOT_OPTIONS['figsize'] = 20
 sage: g.plot()
 }}}

 Hence, I believe the documentation at the start of the file
 {{{graph_plot.py}}} should contain at least one example using
 {{{DEFAULT_PLOT_OPTIONS}}} and one example using
 {{{DEFAULT_SHOW_OPTIONS}}}. As a user I want to understand why there are
 two such dict and which one I should use.

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/13891#comment:21>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
Visit this group at http://groups.google.com/group/sage-trac?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to