Matplotlib plus grand graphique
f = plt.figure()
f.set_figwidth(4)
f.set_figheight(1)
plt.plot(x,y)
plt.show()
calderwoodra
f = plt.figure()
f.set_figwidth(4)
f.set_figheight(1)
plt.plot(x,y)
plt.show()