>>>>> "Richard" == Richard Albright <[EMAIL PROTECTED]> writes:

    Richard> thanks for the subsy tip!, it did exactly what i couldn't
    Richard> do using NullLocator() and NullFormatter(), regardless if
    Richard> i put it before or after the semilogy command.

That's probably because you were setting the major locator and you
should have been setting the minor locator.

Eg,

  from pylab import subplot, semilogy, NullLocator, show
  x = 1,2,3
  y = 1,10,100
  ax = subplot(111)
  ax.semilogy(x, y)
  ax.yaxis.set_minor_locator(NullLocator())
  show()


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to