Solved – Rule of thumb to rule out reverse causality in the OLS model

linear modelregression

Let' say I have a regression model:

$y=a+b*x+error$

Suppose $x$ is income and $y$ is consumption. The hypothesis is that higher income leads to higher consumption and hence, the coefficient on $x$ should be positive, other things remaining the same.Let's also say the estimated coefficient is 0.60. This model obviously suffers from omitted variable bias. Please ignore this issue. My question:

a) Does this model suffer from reverse causality? In other words, is it the case that the relationship is because higher consumption is driving down income? My first guess is that this is not the case because coefficient is positive which means correlation between income and consumption is positive. See here.

b) Given (a), can I use this as a rule-of-thumb to rule out the reverse causality in this case? Is this generalizable to other cases with two variables?

Thanks.
P.S. One can also just use correlation rather than running a simple regression as mentioned earlier.

Best Answer

This is quite a well known issue in economics and I would say that you would most likely have to estimate your equation by IV rather than OLS since your error term will most likely be correlated with your regressors, i.e. $E\left(x_{i}error_{i}\right)\neq0 $. In other words you'll have an endogeneity problem due to simultaneity bias ( http://en.wikipedia.org/wiki/Endogeneity_(applied_statistics) ). Often lagged values of the regressors are useable as instruments. There are of course other options in order to estimate the relationship at hand! Note that if your coefficient is 0.60 or not does not play any role since your estimates will be biased and inconsistent in case you have a simultaneity problem which you do.

Answering your questions step-by-step:

  • Does this model suffer from reverse causality? Yes it does as explained above.

  • In other words, is it the case that the relationship is because higher consumption is driving down income? Income affects consumption and consumption affects income as is known from economic theory.

  • Can I use this as a rule-of-thumb to rule out the reverse causality in this case? No. This is because your estimates are inconsistent and biased.

  • Is this generalizable to other cases with two variables? No it is not as it really depends on each case. There is no rule of thumb in this case other than using the Hausman test to test for simultaneity bias. What we are testing is whether or not the OLS estimates are consistent or not.

Try to look at: Campbell, John Y. and Mankiw, N. Gregory. 1989. “Consumption, Income and Interest Rates: Reinterpreting the Time Series Evidence”.

Related Question