Re: [Matplotlib-users] Possible bug in axvline

2006-06-15 Thread John Hunter
> "Tony" == Tony Mannucci <[EMAIL PROTECTED]> writes: Tony> axvline does not appear to work correctly. It appears to Tony> change the plot axes. For example: Thanks for the bug-report and example code, this is now fixed in svn 2481. To fix this, I also added support for selective au

[Matplotlib-users] Possible bug in axvline

2006-06-15 Thread Tony Mannucci
axvline does not appear to work correctly. It appears to change the plot axes. For example: import matplotlib import pylab as PLT >>> x array([ 0., 1., 2., 3.]) >>> y array([ 2., 3., 5., 6.]) >>> PLT.plot(x,y) [] >>> PLT.axis([0.0,3.0,0.0,5.0]) [0.0, 3.0, 0.0, 5.0] >>> PLT.axvline(1.5)