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')

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM