编程语言
首页 > 编程语言> > python-在SciPy中使用固定参数拟合分布

python-在SciPy中使用固定参数拟合分布

作者:互联网

在SciPy中拟合分布时是否可以固定参数?例如,此代码:

import scipy.stats as st
xx = st.expon.rvs(size=100)
print st.expon.fit(xx, loc=0)

导致非零位置(位置).

当将一些参数提供给拟合函数时,将其视为初始猜测.并且如果将其提供给构造函数(st.expon(loc = 0)),则该分布将变为“冻结”并且不能用于拟合.

解决方法:

要修复loc,请使用参数floc:

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

例如.

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)

一些相关的问题:

> Gamma distribution fit error
> Why does the Gamma distribution in SciPy have three parameters?
> Fitting non-normpdf’s to histograms in matplotlib

标签:exponential,python,scipy,distribution,data-fitting
来源: https://codeday.me/bug/20191011/1896345.html