Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

matplotlib.pyplot

import matplotlib.pyplot as plt 
x=[0,10,20,30,60,90]
y=[-4.39,-4.69,-4.99,-5.30,-6.21,-7.13]
fig=plt.figure()
ax=fig.add_axes([0,0,1,1]) #grand
plt.plot(x,y)
plt.show()
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
7+6 =