elkclone

2dplotter.py

Feb 19th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. import numpy as np
  3.  
  4. plt.plot([1,3,6,8,9],[2,4,5,8,9])
  5. plt.title('firstplot1.png')
  6. plt.xlabel('xaxis_elapsedTimeinMonths')
  7. plt.ylabel('yaxis_numberofEnemyIpwnd')
  8. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment