画子图

import matplotlib.pyplot as plt

fig = plt.figure()   #设置画图域    可以设置子图的大小figsize=(3,3)  等参数

ax1 = fig.add_subplot(2,2,1)       #在画图域中添加子图, 2x2个域中添加1号位的图

#上面两行代码与下面一行代码一样

#fig,ax1 = plt.subplots(2,2)     #在这里也可以指定figsize, ax1用来画图,fig用来设置参数

#在第一个子图上画图:ax[0,0].plot()

#官方文档:https://matplotlib.org/api/_as_gen/matplotlib.pyplot.subplots.html

ax2 = fig.add_subplot(2,2,2)       #添加2号位的图

ax3 = fig.add_subplot(2,2,4)       #添加4号位的图             

ax1.plot([1,2,3,4,5],[1,2,3,4,5],c="blue",label="blue")     #画ax1图,参数label设置图例的名字

ax1.plot([4,3,2,1],[6,5,4,3],c="black",label="black")       #画ax2图

ax2.plot([1,2],[4,5],c="red")

ax1.legend(loc="best")     #设置图例,loc参数为位置

plt.show()     #将所有图都展示出

结果

你可能感兴趣的:(画子图)