我正在嘗試獲取GLM中每個協變量的F統計量和p值。在Python中,我使用stats mode.formula.api來執行GLM。蟒蛇中的GLM的Anova測試
formula = 'PropNo_Pred ~ Geography + log10BMI + Cat_OpCavity + CatLes_neles + CatRural_urban + \
CatPred_Control + CatNative_Intro + Midpoint_of_study'
mod1 = smf.glm(formula=formula, data=A2, family=sm.families.Binomial()).fit()
mod1.summary()
之後,我試圖做ANOVA測試使用statsmodels.stats方差分析這個模型
table1 = anova_lm(mod3)
print table1
但是我得到一個錯誤說: 「GLMResults」對象沒有屬性'ssr'
看起來像這樣anova_lm函數只適用於線性模型python中是否有一個模塊用於對GLM進行anova測試?
ANOVA type 3類型的初步結果https://groups.google.com/d/msg/pystatsmodels/qQxWdSi_fQk/0O3eAgINYhkJ – user333700 2014-12-07 14:13:19