Good morning users,
I am using the following logistic regression and i want to see if adding the variable "crisis" I have significant improvement to my model. To do so, I used the Wald test for only that variable.
Wald test:
I was also wondering if the fact that my variable is significant should lead to the same result and so that it provides a statistically significant improvement in the fit of the model.
Thank you in advanced
Luke Brown
I am using the following logistic regression and i want to see if adding the variable "crisis" I have significant improvement to my model. To do so, I used the Wald test for only that variable.
Code:
logit hequity hhsex i.Age i.Educ i.Race logincome logwealth crisis Iteration 0: log likelihood = -18808.808 Iteration 1: log likelihood = -12504.414 Iteration 2: log likelihood = -11899.219 Iteration 3: log likelihood = -11874.807 Iteration 4: log likelihood = -11874.744 Iteration 5: log likelihood = -11874.744 Logistic regression Number of obs = 28816 LR chi2(15) = 13868.13 Prob > chi2 = 0.0000 Log likelihood = -11874.744 Pseudo R2 = 0.3687 ----------------------------------------------------------------------------------------- hequity | Coef. Std. Err. z P>|z| [95% Conf. Interval] ------------------------+---------------------------------------------------------------- hhsex | .1263082 .0404188 3.12 0.002 .0470887 .2055277 | Age | 31-40 | -.0635375 .0615691 -1.03 0.302 -.1842107 .0571357 41-50 | -.2001831 .0610567 -3.28 0.001 -.3198521 -.0805142 51-60 | -.3630659 .0630575 -5.76 0.000 -.4866562 -.2394755 61-70 | -.7231996 .068211 -10.60 0.000 -.8568906 -.5895086 >70 | -1.078588 .0719979 -14.98 0.000 -1.219702 -.9374752 | Educ | High school | 1.049553 .1544172 6.80 0.000 .7469009 1.352205 College diploma | 1.450958 .1560823 9.30 0.000 1.145043 1.756874 Bachelor or higher | 1.883296 .1567473 12.01 0.000 1.576077 2.190515 | Race | Black/African American | -.3783898 .0512918 -7.38 0.000 -.4789198 -.2778599 Hispanic | -.8111242 .0597963 -13.56 0.000 -.9283227 -.6939256 Asian and other | -.5625384 .078592 -7.16 0.000 -.7165759 -.4085008 | logincome | .6113415 .0245721 24.88 0.000 .5631811 .6595019 logwealth | .4307844 .01204 35.78 0.000 .4071863 .4543824 crisis | -.0855568 .0322764 -2.65 0.008 -.1488175 -.0222962 _cons | -12.38672 .2929917 -42.28 0.000 -12.96098 -11.81247 -----------------------------------------------------------------------------------------
Code:
test crisis ( 1) [hequity]crisis = 0 chi2( 1) = 7.03 Prob > chi2 = 0.0080
Thank you in advanced
Luke Brown
Comment