图标注释对于搞研究的人来说是很重要的,一般的paper里面也都会有。所以是很有必要要学习的。
下面通过一个例子来说明python是怎么做的。
1 import matplotlib.pyplot as plt 2 import numpy as np 3 4 x=np.linspace(-1,1,10) 5 y=x**2 6 7 fig=plt.figure(figsize=(8,4)) 8 ax=plt.subplot(111) 9 plt.plot(x,y) 10 11 for i,(_x,_y) in enumerate(zip(x,y)): 12 plt.text(_x,_y,i,color='red',fontsize=i+10) 13 plt.text(0.5,0.8,'subplot words',color='blue',ha='center',transform=ax.trans Axes) 14 plt.figtext(0.1,0.92,'figure words',color='green') 15 plt.annotate('buttom',xy=(0,0),xytext=(0.2,0.2),arrowprops=dict(facecolor='blue', shrink=0.05)) 16 plt.show() ~
标注的基本知识到此结束了。