On Fri, May 9, 2008 at 9:38 AM, Neal Becker <[EMAIL PROTECTED]> wrote:
> I have sets of data to plot on semilogy.  I want the minimum y axis set to
> some value, say 10e-10.
>
> I do:
>   axis([0,1,1e-10,1])
>   hold(True)
>   for (whatever):
>     semilogy (x, y)
>   grid()
>   legend()
>   show()

semilogy calls the autoscale machinery, so you either need to call
"axis" at the end, or turn off autoscaling after you have set it:

ax.set_autoscale_on(False)

JDH

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to