plt.subplot2grid()函数
Posted key221
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plt.subplot2grid()函数相关的知识,希望对你有一定的参考价值。
plt.subplot2grid
plt.subplot2grid(shape, loc, rowspan=1, colspan=1, fig=None, **kwargs)
shape : sequence of 2 ints
loc : sequence of 2 ints
rowspan : int
Number of rows for the axis to span to the right.
colspan : int
Number of columns for the axis to span downwards.
example:
plt.subplot2grid((4, 3), (0, 0), colspan=3) plt.subplot2grid((4, 3), (1, 0), rowspan=3) plt.subplot2grid((4, 3), (1, 1)) plt.subplot2grid((4, 3), (1, 2)) plt.subtitle(‘haha‘)
以上是关于plt.subplot2grid()函数的主要内容,如果未能解决你的问题,请参考以下文章