Matplotlib merge two plots in a figure

前端 未结 0 797
死守一世寂寞
死守一世寂寞 2021-01-20 21:53

I have the following MWE

fig1, ax1 = plt.subplots()
ax1.plot([1,2,3,4])
plt.show()

fig2, ax2 = plt.subplots()
ax2.plot([9,8,7,6])
plt.show()

相关标签:
回答
  • 消灭零回复
提交回复
热议问题