我想使用statsmodel在Python中计算Cooks_d
和DFFITS
。
这是我在Python中的代码:
X = your_str_cleaned[param]
y = your_str_cleaned['Visitor']
X = sm.add_constant(X)
model = sm.OLS(y, X)
results = model.fit()
我尝试使用它来获取Cooks Distance
和DFFITS
:
import statsmodels.stats.outliers_influence as st_inf
st_inf.OLSInfluence.summary_frame(results)
但是我收到此错误:
“ OLSResults”对象没有属性“ results”。
有人可以帮我找到我要去哪里吗?