मान लीजिए, मैं इस तरह के कई स्वतंत्र चर पर एक संयुक्त लॉजिस्टिक प्रतिगमन करने जा रहा हूं:
mod.a <- glm(x ~ a, data=z, family=binominal("logistic"))
mod.b <- glm(x ~ b, data=z, family=binominal("logistic"))
मैंने यह देखने के लिए एक मॉडल तुलना (संभावना अनुपात परीक्षण) किया कि क्या मॉडल इस कमांड द्वारा अशक्त मॉडल से बेहतर है
1-pchisq(mod.a$null.deviance-mod.a$deviance, mod.a$df.null-mod.a$df.residual)
फिर मैंने इसमें सभी वेरिएबल्स के साथ एक और मॉडल बनाया
mod.c <- glm(x ~ a+b, data=z, family=binomial("logistic"))
मल्टीवीरेट मॉडल में वैरिएबल सांख्यिकीय रूप से महत्वपूर्ण है या नहीं यह देखने के लिए, मैंने lrtest
कमांड का उपयोग कियाepicalc
lrtest(mod.c,mod.a) ### see if variable b is statistically significant after adjustment of a
lrtest(mod.c,mod.b) ### see if variable a is statistically significant after adjustment of b
मुझे आश्चर्य है कि क्या pchisq
विधि और lrtest
विधि loglikelihood परीक्षण करने के लिए बराबर हैं? जैसा कि मुझे पता है कि lrtest
लॉजिस्टिक मॉडल को एकजुट करने के लिए कैसे उपयोग किया जाए।