Hello,
I am running a bivariate probit model (-biprobit-), and if one of the models is not converging, I would like the program to move on to the next one. I had thought I could do this by specifying the option -iterate(#)-, but this seems to only apply the limit to the final step ("Fitting full model"), not the prior ones ("Fitting comparison equation [1/2]").
For example, you can do:
sysuse auto
gen temp = (mpg>15)
biprobit (foreign temp) (temp length), iterate(3)
You will see that while the full model only does 3 iterations, comparison equation 2 does 5 iterations.
Does anyone how to set a limit on the iterations of the estimation of the comparison equations, as well? Thanks!
Josh
I am running a bivariate probit model (-biprobit-), and if one of the models is not converging, I would like the program to move on to the next one. I had thought I could do this by specifying the option -iterate(#)-, but this seems to only apply the limit to the final step ("Fitting full model"), not the prior ones ("Fitting comparison equation [1/2]").
For example, you can do:
sysuse auto
gen temp = (mpg>15)
biprobit (foreign temp) (temp length), iterate(3)
You will see that while the full model only does 3 iterations, comparison equation 2 does 5 iterations.
Does anyone how to set a limit on the iterations of the estimation of the comparison equations, as well? Thanks!
Josh
Comment