import matplotlib as plt #matlab语法 plt.figure(figsize=(9,3)) #表示图表的长度为9,高度为3 #在2行1列位置,画第一个图 plt.subplot(211) plt.bar(seasons.stock1) #2行1列,画第二个图 plt.subplot(212) plt.plot(seasons,stock2,'b^--') plt.show()
#面向对象OOP精确语法 fig,axes=plt.subplots(2,1,figsize=(6,6)) axes[0].bar(seaborn,stock1) axes[1].plot(seaborns,stocks,'b^--') plt.show()
标签:plot,plt,show,axes,matplotlib,stock1 From: https://www.cnblogs.com/bokeyuanjj/p/16848447.html