Hope you can help interpreting these coefficients of my OLS model:
Suppose we have a dependent variable Y and an independent variable X.
X consists of three parts, X = X1 + X2 + X3. I run following Stata command:
This should give me the coefficient for X1 and the incremental effects for X2 and X3.
Now suppose, I introduce an additional variable X4 which is also part of X but it is also reflected in all of X’s split variables X1, X2, X3. (so X = X1-a*X4+X2-bX4+X3-cX4+X4) where a+b+c = 1
So I run:
And now I'm somewhat lost - how can I interpret the coefficient of X4? As far as a I know, this controls for X4, meaning that X, X2, and X3 are now "free" of the influence of X4 (i.e. X4 is held constant). But how can I interpret the magnitude of the coefficient? How do I get the actual (not incremental) effect for X4 on Y?
I would be very grateful if you have literature suggestions on these kind of problems!
Suppose we have a dependent variable Y and an independent variable X.
X consists of three parts, X = X1 + X2 + X3. I run following Stata command:
Code:
reg Y X X2 X3
Now suppose, I introduce an additional variable X4 which is also part of X but it is also reflected in all of X’s split variables X1, X2, X3. (so X = X1-a*X4+X2-bX4+X3-cX4+X4) where a+b+c = 1
So I run:
Code:
reg Y X X2 X3 X4
I would be very grateful if you have literature suggestions on these kind of problems!
Comment