如何在matplotlib中创建双向箭头(带有文本)

时间:2018-08-28 08:21:51

标签: python matplotlib annotations arrows

我想在matplotlib图中绘制一个双向箭头。 并在其中添加一些文本。 这是python中的MWE

import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,6,7,8,9,10,11,11,12,13,14,15,16]
y = [10,8,6,4,2,0,10,8,6,4,2,0,10,8,6,4,2,0]
fig = plt.figure(figsize=(8,3.5))
ax = fig.gca()
ax.plot(x, y)
ax.arrow(6.5, 0, 0, 10,length_includes_head=True,width=0.1)
plt.show()

这是我目前得到的 enter image description here

这就是我想要获得的

enter image description here

0 个答案:

没有答案