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