matplotlib 是否可以在添加轴之前从图中获取GridSpec?

q35jwt9p  于 2022-11-24  发布在  其他
关注(0)|答案(1)|浏览(138)

Consider the following code

  1. from matplotlib import pyplot as plt
  2. fig = plt.figure()
  3. grid = fig.add_gridspec(2,2)

We have that grid is a GridSpec instance.
Consider now the following code

  1. from matplotlib import pyplot as plt
  2. fig = plt.figure()
  3. fig.add_gridspec(2,2)

The only way to retrieve the GridSpec associated to fig that I found is either to use the first code snippet I posted or to add a Subplot first and then get the GridSpec from such a Subplot :

  1. axes = fig.add_subplot(grid[0])
  2. grid = axes.get_gridspec()

But what if I want to get the GridSpec from fig directly and before adding any Subplot ?
Is it possible?

kmbjn2e3

kmbjn2e31#

下面是定义add_gridspec方法的代码:

  1. def add_gridspec(self, nrows=1, ncols=1, **kwargs):
  2. """
  3. ...
  4. """
  5. _ = kwargs.pop('figure', None) # pop in case user has added this...
  6. gs = GridSpec(nrows=nrows, ncols=ncols, figure=self, **kwargs)
  7. self._gridspecs.append(gs)
  8. return gs

Figure._gridspecs是网格规格的列表,例如,

  1. >>> import matplotlib.pyplot as plt
  2. ... fig = plt.figure()
  3. ... fig.add_gridspec(2, 2)
  4. ... fig.add_gridspec(4, 4)
  5. ... fig._gridspecs
  6. [GridSpec(2, 2), GridSpec(4, 4)]
  7. >>>
展开查看全部

相关问题