programming
matplotlib
from matplotlib import pyplot as plt x = range(2,26,2) y = [15,13,14,17,20,25,26,26,27,22,18,15] plt.plot(x,y)# plt.show() plt.figure(figsize=(20,10),dpi=80) from matplotlib import pyplot as plt x = range(2,26,2) y = [15,13,14,17,20,25,26,26,27,22,18,15] plt.figure(figsize=(20,10),dpi=80) plt.plot(x,y) plt.show() plt.savefig("./t1.png") .svg from matplotlib import pyplot as plt x = range(2,26,2) y = [15,13,14,17,20,25,26,26,27,22,18,15] plt.figure(figsize=(20,10),dpi=80) plt.plot(x,y) plt.savef