Re: [Matplotlib-users] Ticks Size

2010-10-19 Thread Ted Kord
Thanks all. That fixed the problem. Ted On 19 October 2010 00:02, Gökhan Sever wrote: > On Mon, Oct 18, 2010 at 5:36 PM, Eric Firing wrote: > > > > setp(xticks, markeredgewidth=4) > > > > Ticks are markers. > > > > Eric > > Good catch. Thanks for the fix. > > -- > Gökhan > > > ---

Re: [Matplotlib-users] Ticks Size

2010-10-18 Thread Gökhan Sever
On Mon, Oct 18, 2010 at 5:36 PM, Eric Firing wrote: > > setp(xticks, markeredgewidth=4) > > Ticks are markers. > > Eric Good catch. Thanks for the fix. -- Gökhan -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new

Re: [Matplotlib-users] Ticks Size

2010-10-18 Thread Eric Firing
On 10/18/2010 09:42 AM, Gökhan Sever wrote: > On Mon, Oct 18, 2010 at 12:46 PM, Ted Kord wrote: >> Hi >> >> How do I make the tick size bigger as in thicker/bolder? >> >> matplotlib.rc('ytick.major', size=5) makes it longer but 'not' thicker. >> >> Ted > > I[1]: plt.plot(range(100)) > O[1]: [] > >

Re: [Matplotlib-users] Ticks Size

2010-10-18 Thread Gökhan Sever
On Mon, Oct 18, 2010 at 12:46 PM, Ted Kord wrote: > Hi > > How do I make the tick size bigger as in thicker/bolder? > > matplotlib.rc('ytick.major', size=5) makes it longer but 'not' thicker. > > Ted I[1]: plt.plot(range(100)) O[1]: [] I[2]: xticks = getp(gca(), 'xticklines') I[3]: xgrids = get

[Matplotlib-users] Ticks Size

2010-10-18 Thread Ted Kord
Hi How do I make the tick size bigger as in thicker/bolder? matplotlib.rc('ytick.major', size=5) makes it longer but 'not' thicker. Ted -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash

Re: [Matplotlib-users] ticks size

2007-04-30 Thread Jouni K . Seppänen
Claudio <[EMAIL PROTECTED]> writes: > Is there any way i can handle the size (without having to actually > modify the whole system through config file)? Yes, the size keyword: > xticks(ind, colors.keys()) xticks(ind, colors.keys(), size='smaller') The possible values of size are listed at http

[Matplotlib-users] ticks size

2007-04-30 Thread Claudio
Hello. I'm writing for a question about the bar() object. My problem is that I have to write long labels to the ticks to indicate the bins' meaning but they are overlapping one onto another. Is there any way i can handle the size (without having to actually modify the whole system through config fi