Does ivreg in AER support a logit regression with instrumental variables?
For example:
IV = ivreg (Mort ~ Age + Sex + APACHE + PART_SendImmed + ICU_AdmImmed + ICU_LOS | Age + Sex + APACHE + PART_SendImmed + NurseOCC_Adm + NurseOCC_Disch,
data = test)
Where, Mort
is a binary variable
ICU_AdmImmed
and ICU_LOS
are endogenous variables, and
NurseOCC_Adm
and NurseOCC_Disch
are two instrumental variables.
I would suggest to use a probit rather than a logit, which will both improve the interpretability as well as allow you to use
ivprob
.I don't know of a canned package to do it in R using a logit, in fact I'm fairly sure there isn't one as this was the conclusion of an econjobrumors.com thread on the topic, however if there's some reason you'd prefer a logit to a probit, then you could always carry out the process manually.