Logistic vs. probit
The coefficients obtained from the probit.model object looked familiar. So what is the actual difference to the logistic.model?
Next, you compare the coefficients of both models by using the function coef(). For a better comparison you bind the coefficient vectors together by using the function cbind().
यह अभ्यास पाठ्यक्रम का हिस्सा है
Building Response Models in R
अभ्यास निर्देश
- Obtain the model coefficients of the
probit.modeland thelogistic.modelusing the functioncoef()and compare them using the functioncbind().
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Compare the coefficients
___(coef(___), coef(___))