Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

As an example, consider the ChickWeight data set in R. The variance obviously grows over time, so if I use a simple linear regression like:

m <- lm(weight ~ Time*Diet, data=ChickWeight)

which aspects of the model will be questionable? Are the problems limited to extrapolating outside the Time range? How tolerant is linear regression to violation of this assumption (i.e., how heteroscedastic does it have to be to cause problems?).

share|improve this question

2 Answers

up vote 11 down vote accepted

The linear model (or "ordinary least squares") still has its BLUE (Best Linear Unbiased Predictor) properties.

In the face of heteroskedasticity in error terms, you still have unbiased parameter estimates but you loose on the covariance matrix: your inference (i.e. parameter tests) may be off. The common fix is to use a robust method for computing the covariance matrix aka standard errors. Which one you use is somewhat domain-dependent but White's method is a start.

And for completeness, serial correlation of error terms is worse as it will lead to biased parameter estimates.

share|improve this answer

Absence of homoscedasticity may give unreliable standard error estimates of the parameters. Parameter estimates are unbiased. But the estimates may not efficient(not BLUE). You can find some more in the following link

share|improve this answer
Thanks for that helpful link. – Dan M. Feb 14 '12 at 18:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.