For me, the code below draws the top plot only half on the page. Can 
anybody help me out?



from pylab import *

groups = [      [ 'A', 'B', 'C', 'D', 'E' ],
                [ 'F', 'G', 'H', 'I' ],
                [ 'M', 'N', 'O', 'P', 'Q' ] ]

f = figure(1)
for i in range(len(groups)):
        group = groups[i]
        subplot(len(groups), 1, i)
        for treatment in group:
                plot(linspace(0, 1, 32), rand(32))

show()



Thanks,

Peter

-------------------------------------------------------------------------
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