虚幻咖啡

文章
4
资源
1
加入时间
2年10月21天

python matplotlib学习笔记(一)

python matplotlib学习笔记(一)from matplotlib import pyplot as pltx = range(2, 26, 2) # range(2,26,2)从2到25,步长为2,结果不包括26y = [15, 13, 14, 5, 17, 20, 25, 26, 27, 22, 18, 15]# 设置图片大小plt.figure(figsize=(60, 50), dpi=100) # figsize 设置图形的大小,60为图形的宽, 50为图形