Dear all,
Is it sufficient to conclude a logit model's fit based on the LR chi2, prob > chi2, and pseudo-R^2 (/McFadden's R^2)? Or must I run other tests?
Data used: Labor Force Survey

Edit: I'm still not sure whether or not weights should be included in the logit regression, so I have posted the weighted version on Stata below as well.

Any pointers are highly appreciated!
Thank you!
Is it sufficient to conclude a logit model's fit based on the LR chi2, prob > chi2, and pseudo-R^2 (/McFadden's R^2)? Or must I run other tests?
Data used: Labor Force Survey
Code:
logit Y i.sex i.education i.sec3 i.urbrur i.marital i.age_grp
Edit: I'm still not sure whether or not weights should be included in the logit regression, so I have posted the weighted version on Stata below as well.
Code:
logit Y i.sex i.education i.sec3 i.urbrur i.marital i.age_grp[pw=round(weight)]
Any pointers are highly appreciated!
Thank you!
Comment