我有一些数据,我可以使用例如来自Fitting a gamma distribution with (python) Scipy的代码来拟合伽玛分布。
import scipy.stats as ss
import scipy as sp
生成一些伽玛数据:
alpha=5
loc=100.5
beta=22
data=ss.gamma.rvs(alpha,loc=loc,scale=beta,size=10000)
print(data)
# [ 202.36035683 297.23906376 249.53831795 ..., 271.85204096 180.75026301
# 364.60240242]
这里我们将数据拟合到伽马分布:
fit_alpha,fit_loc,fit_beta=ss.gamma.fit(data)
print(fit_alpha,fit_loc,fit_beta)
# (5.0833692504230008, 100.08697963283467, 21.739518937816108)
print(alpha,loc,beta)
# (5, 100.5, 22)
我也可以将指数分布拟合到相同的数据。不过,我想做一个likelihood ratio test。要做到这一点,我不需要适应分布,但我也需要返回可能性。你怎么能在python中做到这一点?
答案 0 :(得分:4)
您可以通过调用data
的{{1}}方法然后对数组求和来计算logpdf
的对数似然性。
第一段代码来自您的示例:
stats.gamma
以下是如何计算对数似然性:
In [63]: import scipy.stats as ss
In [64]: np.random.seed(123)
In [65]: alpha = 5
In [66]: loc = 100.5
In [67]: beta = 22
In [68]: data = ss.gamma.rvs(alpha, loc=loc, scale=beta, size=10000)
In [70]: data
Out[70]:
array([ 159.73200869, 258.23458137, 178.0504184 , ..., 281.91672824,
164.77152977, 145.83445141])
In [71]: fit_alpha, fit_loc, fit_beta = ss.gamma.fit(data)
In [72]: fit_alpha, fit_loc, fit_beta
Out[72]: (4.9953385276512883, 101.24295938462399, 21.992307537192605)