我有下面的网格图,并且想画一个箭头(用ms paint显示为蓝色)。我怎样才能通过Matplotlib?我不知道该怎么做。
最佳答案
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()
给予
关于python - 在Matplotlib中绘制阴影外的箭头,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23922804/