Hello,
I am trying to estimate the following simultaneous equation model:
X is endogenous, but I have a credible instrument, Z. So if all my variables were continuous, I could just use 2SLS (ivreg2) to obtain consistent coefficient estimates. However, I am not dealing with a random sample. Data for my dependent variable is truncated from below. In other words, observations that had a Y value below a certain level, L, were not included in the data set (in still other words: Y=Y if Y>L and Y=. if Y<L).
If I didn't have an endogenous variable, I would just estimating a truncated regression using truncreg (details on truncated regression provided in Chapter 17.3 of Wooldridge (2002)). But since I *do* have an endogenous variable, I am stuck.
My first idea for a solution is to basically do the a two-step procedure similar to 2SLS, but to use tuncreg in the second step.
References:
Hausman, Jerry A., and David A. Wise. "Social experimentation, truncated distributions, and efficient estimation." Econometrica: Journal of the Econometric Society (1977): 919-938.
Wooldridge, Jeffrey M. Econometric analysis of cross section and panel data. MIT press, 2002.
I am trying to estimate the following simultaneous equation model:
Code:
Y = B0 +B1*X + u
If I didn't have an endogenous variable, I would just estimating a truncated regression using truncreg (details on truncated regression provided in Chapter 17.3 of Wooldridge (2002)). But since I *do* have an endogenous variable, I am stuck.
My first idea for a solution is to basically do the a two-step procedure similar to 2SLS, but to use tuncreg in the second step.
- Step 1: Obtain predicted values for X (i.e. estimate X = G0 + G1*Z + e using OLS and obtain predicted values).
- Step 2: Substitute predicted values for X (call them X_hat) and substitute into main equation and estimate using truncated regression.
References:
Hausman, Jerry A., and David A. Wise. "Social experimentation, truncated distributions, and efficient estimation." Econometrica: Journal of the Econometric Society (1977): 919-938.
Wooldridge, Jeffrey M. Econometric analysis of cross section and panel data. MIT press, 2002.
Comment