After reading a lot of different papers and a lot of different posts on the internet I still don't have a clue how to test on heteroskedasticity with my logistic regression (binary). The White test works only for OLS regression right?
Asked
Active
Viewed 3,918 times
2
-
4A binary response must be heteroscedastic given the predictors. Think of the extremes. A mean of 0 or a mean of 1 can only be 0 or 1 if all values are 0 or 1 respectively, so the variance will be 0 at the extremes but positive in between. What authoritative texts tell you to test for heteroscedasticity? – Nick Cox Dec 01 '14 at 10:02
-
1http://stats.stackexchange.com/questions/124818/logistic-regression-error-term-and-its-distribution and its links may help. – Nick Cox Dec 01 '14 at 10:06
-
You can test for a particular type of heteroskedasticity in a probit model. Stata's [hetprobit](http://www.stata.com/manuals13/rhetprobit.pdf) is one implementation. – dimitriy Dec 02 '14 at 20:41
-
In logistic regression, the variance depends on the mean. So it must be heteroskedastic. – Liu Jim Apr 02 '15 at 02:51
1 Answers
2
Heteroscedasticity as such is not the main worry in logistic regression. For count data, the concern is overdispersion. The logistic model assumes that the probability of "success" is given by the model ... but what if the probability of success is, say, a Beta random variable whose mean is your model mean? The expected counts would no longer be what the logistic predicts.
You could check for this possibility by fitting a beta-binomial model to see if the fit was substantially better --- See R package bbmle.
To me, I would only go that route if I had subject matter grounds for modeling the success probability that way.
Overdispersion can also happen with Poisson counts.

Placidia
- 13,501
- 6
- 33
- 62
-
2If the distribution of the error term is misspecified or heteroskedastic, then the maximum likelihood estimator is generally inconsistent. See Yatchew and Griliches 1985 paper in RESAT for a proof. – dimitriy Dec 02 '14 at 20:46
-
1