1

I have calulated an OLS with and without a constant term. However, besides that the values are different I haven`t really found anything valueable?

Therefore my question is:

Whats the biggest difference in calculating a simple regression model with/without a constant term?

I really appreciate your reply!

kjetil b halvorsen
  • 63,378
  • 26
  • 142
  • 467
Le Max
  • 3,559
  • 9
  • 26
  • 26

1 Answers1

1

Estimating a regression without a constant term is essentially saying "I know the intercept of my model is equal to zero. I don't need to estimate it because I know with certainty what it is." That's a pretty bold claim to make. If you're right, then you can estimate the slope with slightly increased precision. If you're wrong, your estimate of the slope will be biased (often badly). It almost always makes sense to include the constant term in a regression model because the cost of estimating the intercept is so low compared to the huge biases that could result from improperly omitting it.

If you have a categorical variable in your model, omitting the intercept won't change any of the other estimates in your model because the otherwise omitted dummy variable takes the place of the intercept. Omitting the intercept will change the interpretation of the coefficients on the dummy variables.

Noah
  • 20,638
  • 2
  • 20
  • 58