On Wed, Sep 24, 2008 at 1:21 PM, charles reid <[EMAIL PROTECTED]> wrote:
> Hi -
>
> I haven't had any luck finding any examples of putting a subplot within a
> subplot in the documentation/website/example files.  Is this possible?  For
> example, I would want something like this:
> __________________
> |                   |              |
> |                   |              |
> |                   |_______|
> |                   |              |
> |                   |              |
> | _________|_______|
>
> Where (in the particular case above) subplot(1,2,1) itself contains a
> subplot(2,1,1) and subplot(2,1,2).  Hopefully that looks ok/makes sense to
> everyone.

You can do

  subplot(121)
  subplot(222)
  subplot(224)

Is this what you are after -- if not, see the axes_demo.py for finer control

  http://matplotlib.sourceforge.net/examples/pylab_examples/axes_demo.py

JDH

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to