Re: [Matplotlib-users] hist() and semilogy

2008-04-15 Thread Matthias Michler
Hello Adrian, I'm not sure I understood well, but if you want a histogram with logarithmic yscale, you may want to use something like: import pylab pylab.subplot(111, yscale='log') pylab.histogram(some_nice_data) pylab.show() regrads Matthias On Monday 14 April 2008 22:28:49 Adrian Price-Whel

[Matplotlib-users] hist() and semilogy

2008-04-14 Thread Adrian Price-Whelan
Hello - I haven't been able to find any useful documentation about semilogy and exactly how i can implement it into a Histogram. I'm simply trying to create a histogram of a lot of data with a y-axis scaled logarithmically. Specifically I am creating a pixel histogram of a FITS image...for