semilogy with dates on x?

What is the preferred method to do the equivalent of plot_date
with log scaling for the non-date values?

Thanks,
Alan Isaac

Hi Alan,

What about using 'plot_date' ans scaling the y-axis by hand?
In the example 'date_demo1.py' you would have to change
-ax = fig.add_subplot(111)
to:
+ax = fig.add_subplot(111, yscale='log')

or for any other generated axes 'ax'
ax.set_yscale('log')

Does this help you?

Kind regards,
Matthias

···

On Thursday, May 13, 2010 12:31:08 am Alan G Isaac wrote:

What is the preferred method to do the equivalent of plot_date
with log scaling for the non-date values?

Thanks,
Alan Isaac

Somehow I was unaware of this possibility.
Excellent!

Thanks,
Alan

···

On 5/14/2010 9:03 AM, Matthias Michler wrote:

ax = fig.add_subplot(111, yscale='log')

or for any other generated axes 'ax'
ax.set_yscale('log')