Solved – Is it possible to do a 2sls with linear regression in the 1st stage and logistic regression in the 2nd stage

2slsendogeneityinstrumental-variableslogisticlogit

I'm working on a a bivariate logistic regression. But I have an endogeneity problem and I want solve it through 2sls with 2 instrumental variables.

My thought was to regress (OLS) in first stage and later a bilogit in second stage. Is this a suitable analysis? Is it a "forbidden regression"? What would be the best option that helps to solve it?

Best Answer

Short answer : No, you can't. That is indeed forbidden regression what you're trying to do.

Possible solutions : some brief discussion, google the keywords to learn more.

  1. Use LPM(linear probability model) - just use regular 2SLS with your data. sounds crazy, but a lot of people do this in economics literature. Make sure that you get the standard errors right.
  2. MLE - specify the distribution of your first stage equation, jointly with the second stage binary outcome equation. (i.e. use probit model with bi-variate normal errors)
  3. Control function approach - basically add the residuals from the first stage equation to covariates in the second stage.

for details, see Blundell & Powell(2004) or Rivers & Vuong(1988).

Related Question