我想在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()
这就是我想要获得的