Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- tcol = 'g'
- ls = '-'
- linestyles = ['-', '--', ':','--',':']
- styles = [r'$\lambda$',r'$\bowtie$',r'$\circlearrowleft$',r'$\clubsuit$',
- r'$\checkmark$']
- colors = ('b','g','r','c','m','y','k')
- t = np.arange(0, maxGENS, 1 )
- plt.figure(figsize=(8,8))
- ax = plt.subplot(1,1, 1)
- plt.xlabel("Generation")
- plt.ylabel("tests per min")
- plt.plot(t,allrates, ls, color=tcol, markersize=5)
- #ax.set_yticklabels([])
- #ax.set_xticklabels([])
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement