> The " subplot(111) " works only until 9 subplots, and this function does
> not allow me to put rect=(7,3,nrfig). I get the error: 
> 'Single argument to subplot must be a 3-digit integer')
> ValueError: Single argument to subplot must be a 3-digit integer

I always do

   ax = fig.add_subplot(7, 3, nfig)

which works. (in list iterations, make sure nfig starts at 1).

Andreas.

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to