matplotlib 绘图例子
import numpy as np
import matplotlib.pyplot as plt
import turtle as t
plt.figure(figsize=(7, 6.5))
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()
plt.savefig('C:\\Users\\XXX\\Desktop\\test2png.jpg', dpi=500)
plt.figure()#添加新的图片
x = np.random.normal(size=20).cumsum(axis=0)#随机生成标准正态分布数据的按列求累计和为零
y = np.random.normal(size=20).cumsum(axis=0)
plt.plot(y,lw=2,c=‘c’)#设置线宽
plt.plot(y,‘ro’)#进行红点标记数据
plt.plot(x,lw=2,c=‘orange’)
plt.plot(x,‘ro’)
plt.grid(True)#网格
plt.axis(‘tight’)#使用紧凑的坐标轴
plt.xlabel(‘num’)#设置坐标名称
plt.ylabel(‘x.y’)
plt.title(‘Plotting’)#标题