EasyDeepLearn

What are the classical assumptions of linear regression?

medium

Answer

  • (1) Linearity: the conditional mean E[yx]E[y \mid x] is linear in the parameters.
  • (2) Independence of errors.
  • (3) Homoscedasticity: constant error variance across x.
  • (4) Normality of errors (needed for exact inference on coefficients, not for point estimates).
  • (5) No perfect multicollinearity between features.
  • Violations don't ruin prediction but do ruin confidence intervals, p-values, and standard errors.
Check yourself — multiple choice
  • Linearity, independence, homoscedasticity, normality of errors, no perfect multicollinearity
  • Only linearity and normality
  • The features must all be Gaussian
  • The target must be strictly positive

The five classical Gauss-Markov / Gaussian-linear-model assumptions.

#linear-regression#assumptions

Practise Supervised Learning

215 interview questions in this topic.

Related questions