On 9/7/07, Matthieu Brucher <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to know if it is possible to create a plot on several subplots. For
> instance :
>
> pl.subplot(2, 2, 1)
> pl.plot(y1)
> pl.sublot(2, 2, 2)
> pl.plot(y2)
> pl.subplot(2, 2, ???) # Create a plot on the last line
> plot(y3)
>
> Is it possible ?

Although I am not completely sure what you are asking, I think you are
asking for:

subplot(221)
subplot(222)
subplot(212)

then the last subplot (bottom row) will span both columns.

JDH

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to