我有以下网格图,并想画一个箭头(用MS绘制的蓝色显示)。我怎么能通过matplotlib做到这一点?我不知道有任何命令要做。
答案 0 :(得分:17)
import matplotlib.pyplot as plt
fg = plt.figure(1);
fg.clf();
ax = fg.add_subplot(1,1,1)
ax.annotate('', xy=(0, -0.1), xycoords='axes fraction', xytext=(1, -0.1),
arrowprops=dict(arrowstyle="<->", color='b'))
ax.grid(True)
fg.canvas.draw()
给出
答案 1 :(得分:2)
在ax.arrow中使用clip_on = False