I would suggest that you add the axes with:

axes = figure.add_axes((left, bottom, width, height))

instead of .add_subplot().  I think you have too many subplots, it
seems that the algorithm isn't designed for this.  With .add_axes(),
you can add more space.

Note that you have then maybe to call the axes.plot() method directly,
which may be an disadvantage or advantage, depending on you mood :-)

hth,
Friedrich

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to