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
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
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
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
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
-