matplotlib绘图

matplotlib中,两种画图方式:

Matplotlib documentation — Matplotlib 3.8.2 documentationicon-default.png?t=N7T8https://matplotlib.org/stable/

1. plt.figure():

plt.***系列。通过plt.***来画图,是通过matplotlib提供的api,plt提供很多基本的function快速出图,但如果要更细致的精调,就要使用另外一种方法。

plt.figure(1) 
plt.subplot(221)   
plt.plot(A,B)   
plt.show()

2. fig, ax = plt.subplots():

正规较复杂绘图方式。指定figure和axes,然后对axes单独操作。需明白figure/axes/axis都是控制什么 Usage — Matplotlib 1.5.1 documentation

fig, ax = plt.subplots()   
ax.plot(A,B)

Figure 为画布,创建一个画布figure,然后在这个画布上加各种元素

 fig = plt.figure():

Axes 为绘图区域,即一套坐标轴,如果figure只有一张图,那么只有一个axes。如figure有subplot,每个subplot就是一个axes;axes下可以修改编辑的变量非常多,基本能包含所有需求

ax = fig.add_subplot(1,1,1)

Axis 是xy坐标轴,每个坐标轴由竖线和数字组成,每个竖线是一个axis的subplot,因此ax.xaxis也存在axes这个对象。对相应axes进行编辑,就会修改xaxis图像上的表现

你可能感兴趣的:(python,matplotlib,python,开发语言)