Python 统计模型 api 不输出 AIC/BIC 分数

Python Stats Models api does not output AIC/BIC scores

我来自 SAS/R 世界,这是我第一次尝试使用 Python 构建 GLM。我注意到 Stats 模型 api 在汇总统计中没有给我 AIC/BIC enter link description here

有没有办法从统计模型中获取 AiC 和 BIC 分数?

没关系。我正在查看 model.summary() 并且没有得到我需要的东西。我不得不从拟合模型中查找各个值。

对于拟合模型 Loglikelihood = model.llf AIC = model.aic BIC = model.bic

使用此 link 获取其他指标