zoukankan      html  css  js  c++  java
  • 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')

  • 相关阅读:
    woj 1574
    UESTC 594 我要长高 dp单调队列
    HDU 3401 Trade dp 单调队列优化
    HDU 2844 Coins 多重背包
    2-1
    1-2
    1-1
    12-1
    9-1
    14-8
  • 原文地址:https://www.cnblogs.com/key221/p/9391649.html
Copyright © 2011-2022 走看看