something about the changes I made (abs -> np.abs) made my stuff succeed more often
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user