I am trying to estimate the naive regression:
d = b + s + s*b, where s is endogenous. I'm instrumenting for s with iv.
I've seen other posters run something similar to the following regression
where s_b and iv_b are interaction terms.
However, I would really like to do something like this instead:
because I'm don't think s should be predicted with iv_b since I worry that b might influence s.
My questions are:
(1) is there a way to run my second regression?
(2) if my concern is correct, would that constitute a violation of the exclusion restriction?
(3) is my second regression correct?
d = b + s + s*b, where s is endogenous. I'm instrumenting for s with iv.
I've seen other posters run something similar to the following regression
Code:
ivreg2 d = b (s s_b = iv iv_b)
However, I would really like to do something like this instead:
Code:
ivreg2 d = b (s = iv) (s_b = iv_b)
My questions are:
(1) is there a way to run my second regression?
(2) if my concern is correct, would that constitute a violation of the exclusion restriction?
(3) is my second regression correct?
Comment