On Fri, Mar 27, 2009 at 12:15 PM, Bala subramanian <
bala.biophys...@gmail.com> wrote:

>
> I have to make multiple plot on the same page. Six row and three column.
> Kindly suggest me some tips to do the same.


This is covered in the tutorial I referred you to in my first response,

  http://matplotlib.sourceforge.net/users/pyplot_tutorial.html

specifically the section "Working with multiple figures and axes"


http://matplotlib.sourceforge.net/users/pyplot_tutorial.html#working-with-multiple-figures-and-axes

To make six rows and three columns, you do

  subplot(6,3,1)
  subplot(6,3,2)
  ...
  subplot(6,3,18)

See also the documentation for the subplot command


http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.subplot

JDH
------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to