Fitting distribution with fixed parameters in SciPy

限于喜欢 提交于 2019-12-02 02:45:26
Warren Weckesser

To fix loc, use the argument floc:

print st.expon.fit(xx, floc=0)

E.g.

In [33]: import scipy.stats as st

In [34]: xx = st.expon.rvs(size=100)

In [35]: print st.expon.fit(xx, floc=0)
(0, 0.77853895325584932)

Some related questions:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!