import matplotlib.pyplot as plt
plt.figure()
plt.subplot(2,1,1)
plt.plot([0,1],[0,1])
plt.subplot(2,3,4)
plt.plot([0,1],[0,2])
plt.subplot(2,3,5)
plt.plot([0,2],[0,3])
plt.subplot(2,3,6)
plt.plot([0,2],[0,4])
plt.show()
标签:subplot,plot,显示,plt,figure,13Subplot,合一
From: https://www.cnblogs.com/lyc2001/p/17080718.html