Re: [Matplotlib-users] installing matplotlib on mac os X with the *.dmg file

2012-08-31 Thread Russell E. Owen
In article <5b7d5731-75a1-4a27-8864-c973259cf...@neuro.uni-bremen.de>, Felix Patzelt wrote: > The dmg you are referring to appears to install to > /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages > (The main library, not the one for in our user directory). Most l

Re: [Matplotlib-users] Legend Marker Color Bug

2012-08-31 Thread Goyo
2012/8/30 Sterling Smith : > Thank you for taking the time to consider my question. I'm sorry that I > didn't pose my question correctly. I should have said: 'Consider the > _results_ of the following script:' I originally tried to attach the results > I obtained, which showed no change in c

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Mark Lawrence
On 31/08/2012 16:32, Fabrice Silva wrote: > To avoid (not so) rude answer like Mark's one, please try first to refer > to: > - the documentation of the pyplot's commands you use > http://matplotlib.sourceforge.net/api/pyplot_api.html > It tries (pretty well IMHO) to be comprehensive, at least for 9

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabrice Silva
To avoid (not so) rude answer like Mark's one, please try first to refer to: - the documentation of the pyplot's commands you use http://matplotlib.sourceforge.net/api/pyplot_api.html It tries (pretty well IMHO) to be comprehensive, at least for 99% of use cases, - you can set, once for all, the p

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Actually I had some problems to find the solution on the web. Finally I've used: matplotlib.rcParams['legend.fontsize'] = 25.0 and it works well Fabien 2012/8/31 Mark Lawrence > On 31/08/2012 14:42, Fabien Lafont wrote: > > Hello, > > > > The question is in the title :) > > > > Cheers! > >

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Mark Lawrence
On 31/08/2012 14:42, Fabien Lafont wrote: > Hello, > > The question is in the title :) > > Cheers! > Fabien > I don't wish to appear rude as this list is associated with the Python language, but do you ever try a search engine before you ask a question? -- Cheers. Mark Lawrence.

Re: [Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Nelle Varoquaux
Hello Fabien, There is a font size attribute to ``legend``. Here is the description from the docstring: *fontsize*: [ size in points | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ] Set the font size. May be either a size string, relative to the defa

[Matplotlib-users] How to change the textsize inside a legend?

2012-08-31 Thread Fabien Lafont
Hello, The question is in the title :) Cheers! Fabien -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Di

Re: [Matplotlib-users] How to change the size of the numbers under the axis

2012-08-31 Thread Fabien Lafont
Hi, I think I was tired yesterday. matplotlib.rcParams['xtick.labelsize'] = 20.0 works perfectly also with xlabel("name", size= 30) Thanks all, Fabien 2012/8/30 Mark Lawrence : > On 30/08/2012 19:00, Fabien Lafont wrote: >> Actually I just want to do it on that plot not on all my future plot.