Advertisement
Guest User

ludobots step 6

a guest
Dec 21st, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. tcol = 'g'
  2. ls = '-'
  3. linestyles = ['-', '--', ':','--',':']
  4. styles = [r'$\lambda$',r'$\bowtie$',r'$\circlearrowleft$',r'$\clubsuit$',
  5. r'$\checkmark$']
  6. colors = ('b','g','r','c','m','y','k')
  7. t = np.arange(0,  maxGENS,  1 )
  8.  
  9. plt.figure(figsize=(8,8))
  10. ax = plt.subplot(1,1, 1)
  11. plt.xlabel("Generation")
  12. plt.ylabel("tests per min")
  13. plt.plot(t,allrates, ls, color=tcol, markersize=5)
  14.  
  15. #ax.set_yticklabels([])
  16. #ax.set_xticklabels([])
  17.  
  18. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement