Re: [Matplotlib-users] setting manual axis range?

2007-10-30 Thread Manuel Metz
Darran Edmundson wrote: > Two simple questions: > > 1) How does one create a simple xy plot with a user-specified y-axis > range? Combination of setting kwargs ylim and autoscale_on doesn't seem > to do it ... pylab.ylim( (ymin, ymax) ) or pylab.gca().set_ylim( (ymin, ymax) ) ? > 2) If I

[Matplotlib-users] setting manual axis range?

2007-10-29 Thread Darran Edmundson
Two simple questions: 1) How does one create a simple xy plot with a user-specified y-axis range? Combination of setting kwargs ylim and autoscale_on doesn't seem to do it ... 2) If I want to regenerate this plot with revised y data (but same axes), what is the quickest option? At the momen