gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 21:56:21 26 4
gpt4 key购买 nike

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

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

结果在非零位置 (loc)。

当向 fit 函数提供某些参数时,它被视为初始猜测。如果将其提供给构造函数 (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)

一些相关问题:

关于python - 在 SciPy 中使用固定参数拟合分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21610034/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com