>>>>> "Diwaker" == Diwaker Gupta <[EMAIL PROTECTED]> writes:

    >> >> The following minimal script reveals a rendering problem
    >> with >> displaying a histogram on a log vertical axis.

    Diwaker> Has this been resolved yet? I'm running Matplotlib
    Diwaker> 0.87.5-2.2 on Debian Unstable. I try to run the following
    Diwaker> script:

    Diwaker> from pylab import * hist(rand(100), 20) ax = gca()
    Diwaker> ax.set_yscale('log') show()

You have to make sure your yaxis limits are strictly positive, eg

  ax.set_ylim(1e-3, 1e3)
  ax.set_yscale('log')


JDH

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to