【Python-matplotlib】subplot2grid()函数的简单示例

    xiaoxiao2021-04-17  44

    今天看到一个画图函数觉得挺有意思的,就试了一下。 直接上代码片段: ax1 = plt.subplot2grid((3,3), (0,0), colspan=3) ax2 = plt.subplot2grid((3,3), (1,0), colspan=2) ax3 = plt.subplot2grid((3,3), (1, 2), rowspan=2) ax4 = plt.subplot2grid((3,3), (2, 0)) ax5 = plt.subplot2grid((3,3), (2, 1)) plt.suptitle("subplot2grid") 画出来的图的示意图如下所示: 有时候,我们需要画出来的图更紧凑,面对这样的情况,matplotlib()函数并不能满足我们的需求,subplot2grid()函数可以。
    转载请注明原文地址: https://ju.6miu.com/read-673951.html

    最新回复(0)