我正在尝试重现此处给出的示例:http: //jkitchin.github.io/blog/2013/02/12/Nonlinear-curve-fitting-with-parameter-confidence-intervals/
所以我像这样导入了模块:
from scipy.stats.distributions import t
但是当我尝试一个简单的
tval = t.ppf(1-alpha/2, dof)
我有一个例外:
AttributeError: 'numpy.ndarray' object has no attribute 'ppf'
所以 t 是一个 numpy.ndarray。但是如果我阅读文档,它应该是一个带有方法的对象。
你知道发生了什么吗?