python-numpy-指数分布实例详解
如下所示:
#Seedrandomnumbergenerator
np.random.seed(42)
#Computemeanno-hittertime:tau
tau=np.mean(nohitter_times)
#Drawoutofanexponentialdistributionwithparametertau:inter_nohitter_time
inter_nohitter_time=np.random.exponential(tau,100000)
#PlotthePDFandlabelaxes
_=plt.hist(inter_nohitter_time,
bins=50,normed=True,histtype='step')
_=plt.xlabel('Gamesbetweenno-hitters')
_=plt.ylabel('PDF')
#Showtheplot
plt.show()
指数分布的拟合
#CreateanECDFfromrealdata:x,y
x,y=ecdf(nohitter_times)
#CreateaCDFfromtheoreticalsamples:x_theor,y_theor
x_theor,y_theor=ecdf(inter_nohitter_time)
#Overlaytheplots
plt.plot(x_theor,y_theor)
plt.plot(x,y,marker='.',linestyle='none')
#Marginsandaxislabels
plt.margins(0.02)
plt.xlabel('Gamesbetweenno-hitters')
plt.ylabel('CDF')
#Showtheplot
plt.show()
以上这篇python-numpy-指数分布实例详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。