subplot和add_subplot的作用、使用方式及不同
matplotlib.pyplot.subplot(nrows, ncols, index, **kwargs)
作用
Add an Axes to the current figure or retrieve an existing Axes.
添加一个绘图区到当前画布,或检索一个已存在的绘图区
使用方式
注意点
subplot不需要创建figure实例
延申 修改绘图区间距
matplotlib.tight_layout() 自动调整子图间距
修改以上代码得结果
Figure.add_subplot(nrows, ncols, index, **kwargs)
作用
Add an Axes to the figure as part of a subplot arrangement.
添加一个绘图区作为子图排列的一部分
使用方式
注意点
需要创建figure实例,再能调用该方法