Dear members,
I wonder whether this model is correct (I mean, statistically speaking):
The outcome variable is binary (“death”) and there are two binary predictors that I believe need to be “instrumented”. I started with standard probit models, starting with the “crude” model and going forward.
Then, I decided to use the ivprobit.
Below, the command, for a sample of 550 observations:
Contrary to the output under standard probit, the output for ivprobit, in terms of rationale, seemed quite appropriate. What is more, the model converged with few iterations (6). This probit model with endogenous regressors presented:
The output with vce(jackknife) showed an increase of around 12% in the SEs, but gave similar results in terms of p-values.
Theoretically speaking, I’m confident these 2 binary variables shall be instrumented, or at least somewhat “adjusted” in terms
of bias towards the outcome.
By the way, I also used a couple of propensity score methods (including the inverse- probability weighted regression adjustment), but the results of the ivprobit seemed to me the most convincing in terms of biological rationale.
As a matter of fact, that is not the case of “fishing” good results, but conceiving that the previous models provided information that defies the logic and biology at once.
In short, my question is: is this “forbidden regression”? If so, shall it be “allowed” in this particular case? If not, I wonder whether there is an alternative in Stata.
Thank you in advance.
I wonder whether this model is correct (I mean, statistically speaking):
The outcome variable is binary (“death”) and there are two binary predictors that I believe need to be “instrumented”. I started with standard probit models, starting with the “crude” model and going forward.
Then, I decided to use the ivprobit.
Below, the command, for a sample of 550 observations:
Code:
. ivprobit binoutcome continuousvar1 continuousvar2 binvar1 binvar2 binvar3 (bin_inst1 bin_inst2 = binvar4 continuousvar3), vce(robust)
Code:
Wald test of exogeneity: chi2(2) = 9.47 Prob > chi2 = 0.0088
Theoretically speaking, I’m confident these 2 binary variables shall be instrumented, or at least somewhat “adjusted” in terms
of bias towards the outcome.
By the way, I also used a couple of propensity score methods (including the inverse- probability weighted regression adjustment), but the results of the ivprobit seemed to me the most convincing in terms of biological rationale.
As a matter of fact, that is not the case of “fishing” good results, but conceiving that the previous models provided information that defies the logic and biology at once.
In short, my question is: is this “forbidden regression”? If so, shall it be “allowed” in this particular case? If not, I wonder whether there is an alternative in Stata.
Thank you in advance.
Comment