Answers for "pip matplotlib"

31

python pip install matplotlib

pip install matplotlib
Posted by: Guest on March-21-2020
0

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()
Posted by: Guest on May-04-2022

Python Answers by Framework

Browse Popular Code Answers by Language