Hi all,
I am currently looking at the effects of hours worked on physical health using panel data. There is reason to believe that this relationship is non-linear, i.e., working an x-amount of hours may improve your physical health, but at some point, it will take a toll on your physical health (inverted U-shaped relationship).
Imagine I ran the following code in STATA:
where:
> PH is a continuous variable measuring physical health, with a range of 0 (low functioning) to 100 (high functioning)
> q is a set of exogenous variables.
> HW / HW^2 are the variables denoting the No. of hours normally worked per week, which I suspect are endogenous.
> z is, what I think, a non-weak instrument, which is a dummy variable.
The issue here is that I am unable to find a second instrument for my regression. And since z is a dummy, I am unable to square it as you would do with a continuous variable.
My question is, is there an econometric technique to tackle the fact that two variables (hours worked, and hours worked squared) are endogenous with only one dummy instrument, or is it simply not possible?
Thanks for all the help in advance!
Luc
I am currently looking at the effects of hours worked on physical health using panel data. There is reason to believe that this relationship is non-linear, i.e., working an x-amount of hours may improve your physical health, but at some point, it will take a toll on your physical health (inverted U-shaped relationship).
Imagine I ran the following code in STATA:
Code:
xi: xtivreg2 PH q (HW HW^2 = z), fe
> PH is a continuous variable measuring physical health, with a range of 0 (low functioning) to 100 (high functioning)
> q is a set of exogenous variables.
> HW / HW^2 are the variables denoting the No. of hours normally worked per week, which I suspect are endogenous.
> z is, what I think, a non-weak instrument, which is a dummy variable.
The issue here is that I am unable to find a second instrument for my regression. And since z is a dummy, I am unable to square it as you would do with a continuous variable.
My question is, is there an econometric technique to tackle the fact that two variables (hours worked, and hours worked squared) are endogenous with only one dummy instrument, or is it simply not possible?
Thanks for all the help in advance!
Luc
Comment