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()
.
Este exercício faz parte do curso
Building Response Models in R
Instruções do exercício
- Obtain the model coefficients of the
probit.model
and thelogistic.model
using the functioncoef()
and compare them using the functioncbind()
.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Compare the coefficients
___(coef(___), coef(___))