subplot2grid

図のパネルを,行数×列数の二次元空間上の,行・列の場所に置く,複数行または複数列にまたがるパネルも指定できる.
使い方は,plt.subplot2grid((rows,columns),(row,column))が基本.ここでrows, columnsはそれぞれ行数,列数.plt.subplot2grid((rows,columns),(row,column),rowspan=rowspan,colspan=colspan,fig=fig)


This function places a figure panel (axes) in a 2-dimensional space of the size of rows and size of columns. Also, a figure panel can span more than one rows and columns.
The basic usage are plt.subplot2grid((rows,columns),(row,column))orplt.subplot2grid((rows,columns),(row,column),rowspan=rowspan,colspan=colspan,fig=fig)