Hi all
I am comparing diferents methods to analize logistic regresion by logit command and glm commands.
I am having problems to compare Deviance residuals values with both method, do you know the reason
you can check it if you run this this command
I am comparing diferents methods to analize logistic regresion by logit command and glm commands.
I am having problems to compare Deviance residuals values with both method, do you know the reason
you can check it if you run this this command
PHP Code:
sysuse auto, clear
logit foreign mpg
predict xb, xb
predict dev, deviance
glm foreign mpg, family(binomial) link (logit)
predict xb2, xb
predict dev2, deviance
scatter dev xb
scatter dev2 xb2
Comment