matplotlib.pyplot.subplot(*args, **kwargs)
subplot(nrows, ncols, index, **kwargs)
在当前的画板(figure),创建和返回一个Axes对象.nrows,ncols两个参数将整个画板均分,index则是每个Axes的索引,按从左到右,从上到下(row-major).
如果nrows,ncols,index都小于10,则可以写成一个数字,如(221),如果超出10,则需要单独写,如(10,10,10)
参考文献:
https://matplotlib.org/api/_as_gen/matplotlib.pyplot.subplot.html#matplotlib.pyplot.subplot