这篇文章是对此处找到的帖子的补充:Python 2.7 - statsmodels - 格式化和编写摘要输出
我得到了我需要的所有格式,除了置信区间给我带来了问题。
我尝试了许多不同的方法,包括:
low, high = result.conf_int()
打印时返回:
low
Out[260]: 0
high
Out[261]: 1
同样,我尝试过:
low, up = result.conf_int().T
但得到错误:
ValueError: too many values to unpack
当我尝试时同样的事情:
for item in result.conf_int().T:
low, high = item
print low
print high
ValueError: too many values to unpack