Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env python from pylab import * subplot(311) plot(arange(10), ones( (10,))) subplot(312) plot(ones( (10,)), arange(10)) subplot(313) plot(ones( (10,)), ones( (10,)), 'o') show()