On Mon, Mar 29, 2010 at 3:18 AM, Dr. Georg Damm <[email protected]> wrote: > Hi! > > a sage (4.3.3) notebook shows the correct picture of > plot(x^2-5,(x,0,5),ymin=0) > The save method ignores the ymin parameter: > plot(x^2-5,(x,0,5),ymin=0).save("/tmp/test.png") > > Is this a bug or a feature?
I think the ymin, ymax, xmin, xmax, figsize, etc., parameters are not properties of the plot. They are just passed on to show, which is implicitly called to display the plot. That they aren't passed on to save seems like a bug to me, since save and show should behave the same way. -- William > > Georg > > -- > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/sage-support > URL: http://www.sagemath.org > > To unsubscribe from this group, send email to > sage-support+unsubscribegooglegroups.com or reply to this email with the > words "REMOVE ME" as the subject. > -- William Stein Associate Professor of Mathematics University of Washington http://wstein.org -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org To unsubscribe from this group, send email to sage-support+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
