import numpy as npimport matplotlib.pyplot as pltfig = plt.figure()ax1 = fig.add_axes([0.1, 0.1, 0.4, 0.7]); # 固定坐标画, [left,bottom,width,height]ax2 = fig.add_axes([0.55, 0.1, 0.4, 0.7])x = np.arange(0.0, 2.0, 0.02)y1 = np.sin(2*np.pi*x)y2 = np.exp(-x)l1, l2 = ax1.plot(x, y1, 'rs-', x, y2, 'go')y3 = np.sin(4*np.pi*x)y4 = np.exp(-2*x)l3, l4 = ax2.plot(x, y3, 'yd-', x, y3, 'k^')fig.legend((l1, l2), ('Line 1', 'Line 2'), 'upper left')fig.legend((l3, l4), ('Line 3', 'Line 4'), 'upper right')plt.show()
另外 fig.add_subplot(m,n, x); m,n 表示 画一个m行n列的图,x表示第几个图(从左向右,从上到下)
eg: fig.add_subplot(1, 2, 1); 画1行2列 的第1个图
fig.add_subplot(1, 2, 2); 画 1行2列 的第2个图
爱华网本文地址 » http://www.aihuau.com/a/25101010/40608.html