Re: [matplotlib-devel] log scale plots ignore tick_params

2012-10-09 Thread Eric Firing
On 2012/10/09 4:38 PM, Benjamin Root wrote: > > > On Tuesday, October 9, 2012, Mike Kaufman wrote: > > On 10/9/12 9:42 PM, Eric Firing wrote: > > On 2012/10/09 3:03 PM, Mike Kaufman wrote: > > >> clf() > >> x = arange(10) > >> subplot(211) > >> plot(x, x) > >> tick

Re: [matplotlib-devel] log scale plots ignore tick_params

2012-10-09 Thread Benjamin Root
On Tuesday, October 9, 2012, Mike Kaufman wrote: > On 10/9/12 9:42 PM, Eric Firing wrote: > > On 2012/10/09 3:03 PM, Mike Kaufman wrote: > > >> clf() > >> x = arange(10) > >> subplot(211) > >> plot(x, x) > >> tick_params(right='off') # works. > >> > >> subplot(212) > >> semilogy(x, x) > >> tick_pa

Re: [matplotlib-devel] log scale plots ignore tick_params

2012-10-09 Thread Mike Kaufman
On 10/9/12 9:42 PM, Eric Firing wrote: > On 2012/10/09 3:03 PM, Mike Kaufman wrote: >> clf() >> x = arange(10) >> subplot(211) >> plot(x, x) >> tick_params(right='off') # works. >> >> subplot(212) >> semilogy(x, x) >> tick_params(right='off') # doesn't work! >> draw() > > > You need to specify an

Re: [matplotlib-devel] log scale plots ignore tick_params

2012-10-09 Thread Eric Firing
On 2012/10/09 3:03 PM, Mike Kaufman wrote: > > The example code should explain the problem. > tick_params(), at least for the ticks themselves, is ignored by log plots. > > clf() > x = arange(10) > subplot(211) > plot(x, x) > tick_params(right='off') # works. > > subplot(212) > semilogy(x, x) > tic

[matplotlib-devel] log scale plots ignore tick_params

2012-10-09 Thread Mike Kaufman
The example code should explain the problem. tick_params(), at least for the ticks themselves, is ignored by log plots. clf() x = arange(10) subplot(211) plot(x, x) tick_params(right='off') # works. subplot(212) semilogy(x, x) tick_params(right='off') # doesn't work! draw() M -