something about the changes I made (abs -> np.abs) made my stuff succeed more often

This commit is contained in:
Stephen Mardson McQuay
2010-04-30 11:56:01 -06:00
parent 2cbd92e15b
commit a1c88a186e
5 changed files with 63 additions and 22 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env python
good = [82, 164, 247, 328, 411, 491, 565, 649, 729, 808]
bad = [18, 36, 53, 72, 89, 109, 135, 151, 171, 192]
import pylab
pylab.xlabel('total runs')
pylab.ylabel('count')
pylab.grid(True)
pylab.plot(bad)
pylab.plot(good)
pylab.legend(('bad', 'good'))
pylab.show()