绘图的一般顺序:创建figure对象,类似于一张画布python风格,mat风格默认创建
设置横坐标值,纵坐标方程式,放入plt.plot(),再show即可
x=np.arange(0,5.0,0.02)
y=np.exp(-1)*np.cos(2*np.pi*x)
plt.plot(x,y)
plt.grid(color='gray')
plt.show()
Plt.subplots()
Plot函数用color设置曲线的颜色
Marker参数标记坐标点
plt.legend(loc='upper right')未正确显示
Plt.scatter(x,y)
data=[2,10,4,8,6]
postion=[1,2,3,4,5]
plt.bar(left=postion,height=data)
data=[2,10,4,8,6]
postion=[1,2,3,4,5]
plt.barh(postion,data)
fig=plt.figure()
ax=plt.axes(projection='3d')
x_line=np.linspace(0,15,1000)
y_line=np.sin(x_line)
z_line=np.cos(y_line)
ax.plot3D(x_line,y_line,z_line)
plt.show()