鉴于此代码在另一个问题中作为答案给出:
def poisson_interval(k, alpha=0.05):
"""
uses chisquared info to get the poisson interval. Uses scipy.stats
(imports in function).
"""
from scipy.stats import chi2
a = alpha
low, high = (chi2.ppf(a/2, 2*k) / 2, chi2.ppf(1-a/2, 2*k + 2) / 2)
if k == 0:
low = 0.0
return low, high
此片段返回双侧置信区间,但如果我想要片面,我该怎么做呢。由于泊松分布是不对称的,因此这更复杂。任何帮助将不胜感激。
答案 0 :(得分:0)
我认为您应该将a/2
更改为a
或0
,因为它会显示间隔所在的位置:
def poisson_interval(k, alpha=0.05):
"""
uses chisquared info to get the poisson interval. Uses scipy.stats
(imports in function).
"""
from scipy.stats import chi2
a = alpha
low, high = (chi2.ppf(0, 2*k) / 2, chi2.ppf(1-a, 2*k + 2) / 2)
if k == 0:
low = 0.0
return low, high
告诉我它是否有效。