无标题文章
2019-01-23 本文已影响0人
子语默涵
'''---
coded by Warm Wang
---'''
# -*- coding: utf-8 -*-
from pylabimport *
mpl.rcParams['font.sans-serif'] = ['SimHei']#解决图片中中文不显示问题
fig,(ax1,ax2)=plt.subplots(1,2)#新建绘图,并划分为两个绘图区域
stitle=fig.suptitle('one example with two subplots')#绘图的总标题
plot1=ax1.plot([0,1,2,3,4,5,6],[9,4,1,0,1,4,9],'r-',label='plot1')#区域1绘图
ax1.set_title('曲线')#区域1标题
ax1.set_xlabel('x轴')#区域1x轴标签
ax1.set_ylabel('y轴')
plot2=ax2.plot([0,1,2,3,4,5,6],[0,1,2,3,3,2,1],'b--',label='plot2')
ax2.set_title('折线')#区域2标题
ax2.set_xlabel('x轴')#区域2x轴标签
#ax2.set_ylabel('y轴')
fig.legend(loc='upper right')
#建立所有曲线的图例,单曲线可用handles=[plot1]表示;ax1.legend()来对区域1做图例
ax2.annotate('leap',xy=(3,3),xytext=(3,2),arrowprops=dict(facecolor='black',shrink=0.05),)
#对区域2的绘图做标记
plt.show()#显示绘图