Re: [Matplotlib-users] pylab axis query and possible bug

2007-12-21 Thread Gary Ruben
Beautiful! Many thanks John. Gary R. John Hunter wrote: > You can manually turn off autoscaling on the axes instance with the > following, and both scatter and plot should then work as you want. > > ax1 = subplot(121) > axis('off') > ax1.imshow(rand(20,20)) > ax2 = subplot(122) > axis('off') >

Re: [Matplotlib-users] pylab axis query and possible bug

2007-12-21 Thread John Hunter
On Dec 21, 2007 11:50 AM, John Hunter <[EMAIL PROTECTED]> wrote: > On Dec 20, 2007 9:22 PM, Gary Ruben <[EMAIL PROTECTED]> wrote: > > Hi listees, > > > > I often generate plots using the pylab interface plot() function to > > overlay an imshow() image. The minimal script below demonstrates a > > pr

Re: [Matplotlib-users] pylab axis query and possible bug

2007-12-21 Thread John Hunter
On Dec 20, 2007 9:22 PM, Gary Ruben <[EMAIL PROTECTED]> wrote: > Hi listees, > > I often generate plots using the pylab interface plot() function to > overlay an imshow() image. The minimal script below demonstrates a > problem, which may be a bug, or may be a deliberate change introduced > into mp