Matplotlib绘制子图到现有图

我想知道是否有相同的功能

fig, axarr = plt.subplots(3, 2, sharex='col', sharey='row')

其中只为现有图形生成轴数组,而不是创建新的图形对象.我基本上需要创建一个matplotlib窗口,填充它,并在按下按钮时更新它.我想使用subplots方法,因为它允许共享轴,但它强制创建一个新的图形对象,这将打开一个新窗口.

我当前的代码如下所示:

fig = plt.figure()

# When button is pressed
fig.clear()
for i in range(6):
    ax = fig.add_subplot(3, 2, i+1)
    ax.plot(x, y)
plt.draw()

我想做点什么

fig, axarr = plt.subplots(3, 2, sharex='col', sharey='row')

# When button is pressed
fig.clear()
axarr = fig.subplots(3, 2, sharex='col', sharey='row')
for i in range(3):
    for j in range(2):
        ax = axarr[i][j]
        ax.plot(x, y)
plt.draw()

或者,有没有办法直接使用matplotlib窗口?如果这也是一个选项,我可以将新的图形对象绘制到现有窗口中.

如果这有任何区别,我正在使用PySide后端.谢谢.

最佳答案 此功能在主分支
via PR#5146上实现,主分支
via PR#5146的目标是mpl 2.1,它应该在秋季出来.

如果您现在需要,请将主分支或供应商作为函数运行

axarr = vendored_subplots(fig, ...)
点赞