Re: [Matplotlib-users] Two y axis with twinx, only one of them logscale

2009-02-18 Thread Jae-Joon Lee
I believe that it does not actually change the y scale of the first axes, but simply the y tickmarks of the second axes gets visible again. It seems to me a bug, though. Anyhow, I guess inserting following line after ax2.set_yscale(log) should solve your problem. ax2.yaxis.tick_right() -JJ On

Re: [Matplotlib-users] Two y axis with twinx, only one of them logscale

2009-02-18 Thread marcusantonius
You are right, this solved my problem. Thank you very much. mh Jae-Joon Lee wrote: I believe that it does not actually change the y scale of the first axes, but simply the y tickmarks of the second axes gets visible again. It seems to me a bug, though. Anyhow, I guess inserting