Hi Michael,
In both cases, I was first hoping someone else has experienced this problem, to
know I am not alone in the universe.
But since you asked, I am using the macosx backend - but find the same problem
also with WXAgg and TkAgg.
When you mention included examples, I do not find any in my
On 03/24/2011 09:35 AM, Andre' Walker-Loud wrote:
> Hi All,
>
> I am having two slight irritating issues making figures with matplotlib (and
> have not found a solution with Google)
>
> I am running the Enthought 6.2 distribution (python 2.6, matplotlib 0.99.3,
> ipython 0.10, ...) which is insta
Angus McMorland, on 2011-03-24 15:46, wrote:
> Hi all,
>
> I'm trying to get a grid of grids of plots, where the inner grids have
> no inter-plot spacing. Is there a recommended way to go about this?
> I'm aware AxesGrid can do the no-spacing requirement, but it's not so
> obvious that it can be
Hi all,
I'm trying to get a grid of grids of plots, where the inner grids have
no inter-plot spacing. Is there a recommended way to go about this?
I'm aware AxesGrid can do the no-spacing requirement, but it's not so
obvious that it can be used to nest one grid within another, as
gridspec can. Can
Hi All,
I am having two slight irritating issues making figures with matplotlib (and
have not found a solution with Google)
I am running the Enthought 6.2 distribution (python 2.6, matplotlib 0.99.3,
ipython 0.10, ...) which is installed as a Framework on a Mac OSX 10.6
platform.
I currentl
Thanks for your help, Michiel. Two follow up points, one concerning the OSX
backend and one concerning the QT4 backend:
1) A colleague can reproduce the OSX problem we have talked about, but has
never run into it before. We have identical installs of
python/matplotlib/etc through MacPorts, howeve
Actually, I got nice results using:
legend (title="blah blah"...)
Jae-Joon Lee wrote:
> The position of the legend is determined at drawing time, so it is a
> bit tricky to get it right.
> I recommend you to use "annotate" instead.
>
> ax = subplot(111)
> ax.plot([1,2,3], label="u=2,p=3")
> leg