Dear Statalisters,
I've encountered an interesting result when I was performing two following regression:
where var1* is the growth of var1, and var2* is the growth of var2, defined by var1* = (var1/var1[_n-1]) - 1.
var1 and var2 is related as following: var1 = var3 - var4 and var2 = var3 - var5.
When I run the aforementioned regression, Stata drops var1* in the second regression, but Stata does not drop var1 nor var2 in first regression. I understand that Stata randomly drops a variable that contains the same information because of collinearity, but I don't understand why the variable is dropped only for second regression.
Does anyone have any insights into why Stata is behaving in this way? Thank you so much in advance!
Regards,
Hee Sung
I've encountered an interesting result when I was performing two following regression:
Code:
regress y var1 var2, r regress y var1* var2*, r
var1 and var2 is related as following: var1 = var3 - var4 and var2 = var3 - var5.
When I run the aforementioned regression, Stata drops var1* in the second regression, but Stata does not drop var1 nor var2 in first regression. I understand that Stata randomly drops a variable that contains the same information because of collinearity, but I don't understand why the variable is dropped only for second regression.
Does anyone have any insights into why Stata is behaving in this way? Thank you so much in advance!
Regards,
Hee Sung
Comment