如何使用 matplotlib 的 pyplot 注释绘制图形的 x、y 点?我正在使用 python 2.7.12。
到目前为止,我已经使用以下代码获得了 y 轴点的标签:
for i,j in zip(c1,c2):
fig1.annotate('%s' %j, xy=(i,j), xytext=(1,0), textcoords='offset points')
如何使用 matplotlib 的 pyplot 注释绘制图形的 x、y 点?我正在使用 python 2.7.12。
到目前为止,我已经使用以下代码获得了 y 轴点的标签:
for i,j in zip(c1,c2):
fig1.annotate('%s' %j, xy=(i,j), xytext=(1,0), textcoords='offset points')