|
From: Andreas H. <li...@hi...> - 2013-02-19 12:32:36
|
> 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. |