When one works with the library matplotlib.pyplot a simple code example would be:
1
a=[1,2,3,4,5]
b=[1,2,3,4,5]
plt.plot(a,b)
plt.xlim(0,100)
plt.show()
2
a=[1,2,3,4,5]
b=[1,2,3,4,5]
fig=plt.figure()
ax=fig.add_subplot(111)
ax.plot...
asked by
31.01.2018 / 06:31