我有四個(gè)圖形和軸對(duì)象,我想將它們作為子圖添加到新圖形中。即如下代碼:fig1, ax1 = plt.subplots(1, 1, num=1)ax1.plot(x1, y1)fig2, ax2 = plt.subplots(1, 1, num=2)ax2.plot(x2, y2)fig3, ax3 = plt.subplots(1, 1, num=3)ax3.plot(x3, y3)fig4, ax4 = plt.subplots(1, 1, num=4)ax4.plot(x4, y4)我希望所有的ax1都是ax4新圖中的子圖fig5,如下所示:(這不是有效的代碼,僅用于說(shuō)明目的)fig5 = plt.figure()fig5.subplot(2, 2, 1) = ax1fig5.subplot(2, 2, 2) = ax2fig5.subplot(2, 2, 3) = ax3fig5.subplot(2, 2, 4) = ax4做這個(gè)的最好方式是什么?我正在使用 Matplotlib 版本 3.3.1。
將現(xiàn)有的軸或圖形作為子圖形添加到新圖形中
慕尼黑的夜晚無(wú)繁華
2023-07-18 15:30:52