python 趋势线表达式_python绘制有箭头指示的趋势线
生活随笔
收集整理的這篇文章主要介紹了
python 趋势线表达式_python绘制有箭头指示的趋势线
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
代碼:
import numpy as np
import matplotlib.pyplot as plt
x=np.linspace(0,10,2000)
y=np.sin(x)
fig=plt.figure()
ax=fig.add_subplot(111)
ax.plot(x,y,ls='-',lw=2)
ax.set_ylim(-1.5,1.5)
arrowprops=dict(arrowstyle='->',color='r')
ax.annotate("",(3*np.pi/2,np.sin(3*np.pi/2)+0.05),xytext=(np.pi/2,np.sin(np.pi/2)+0.05),color='r',arrowprops=arrowprops)
ax.arrow(0.0,-0.4,np.pi/2,1.2,head_width=0.05,head_length=0.1,fc='g',ec='g')
ax.grid(ls=':',color='gray',alpha=0.5)
plt.show()
運行結果:
總結
以上是生活随笔為你收集整理的python 趋势线表达式_python绘制有箭头指示的趋势线的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: oracle group by用法_从O
- 下一篇: springapplication.ru