1.4.2.9 标注一些点

提示:文档

让我们用annotate命令标注一些有趣的点。我们选取值2π/3,我们想要标注sine和cosine。首先我们在曲线上画出了一个垂直的散点标记线。然后,我们将用annotate命令显示带有剪头的文字。

  1. t = 2 * np.pi / 3
  2. pl.plot([t, t], [0, np.cos(t)], color='blue', linewidth=2.5, linestyle="--")
  3. pl.scatter([t, ], [np.cos(t), ], 50, color='blue')
  4. pl.annotate(r'$sin(\frac{2\pi}{3})=\frac{\sqrt{3}}{2}$',
  5. xy=(t, np.sin(t)), xycoords='data',
  6. xytext=(+10, +30), textcoords='offset points', fontsize=16,
  7. arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))
  8. pl.plot([t, t],[0, np.sin(t)], color='red', linewidth=2.5, linestyle="--")
  9. pl.scatter([t, ],[np.sin(t), ], 50, color='red')
  10. pl.annotate(r'$cos(\frac{2\pi}{3})=-\frac{1}{2}$',
  11. xy=(t, np.cos(t)), xycoords='data',
  12. xytext=(-90, -50), textcoords='offset points', fontsize=16,
  13. arrowprops=dict(arrowstyle="->", connectionstyle="arc3,rad=.2"))

plot_exercice_9_1.png