GridSpecBase(nrows, ncols, height_ratios=None, width_ratios=None)
用于指定放置子图的网格的规格。nrows、ncols为网格的行数和列数。可选的height_ratios和width_ratios为网格的行和列的高度和宽度的比例。
主要方法:
get_geometry:获取网格的规格,返回值为元组,其中第一个元素表示网格的行数,第二个元素表示网格的列数。
get_grid_positions(fig, raw=False):返回行的顶部和底部位置以及列的左侧和右侧位置。fig:matplotlib.figure.Figure实例。raw:若为True,则使用没有空白的容器参数。若为False,则使用get_subplot_params获取的子图参数。
get_subplot_params(figure=None, fig=None):抽象方法,返回子图布局的参数字典,由其子类实现。
new_subplotspec(loc, rowspan=1, colspan=1):创建并返回一个SuplotSpec实例。loc位置信息。
get_height_ratios/set_height_ratios:获取/设置高度比例。
get_width_ratios/set_width_ratios:获取/设置宽度比例。