I'm trying to estimate a Bayesian Bivariate Ordered Probit Model using Stata's "llevaluator" feature for the first time in Stata/SE 14.1 .
I am using Zurab Sajaia's bioprobit routine in the "llevaluator" in my "bayesmh" command.
The reference to Stata's bioprobit is:
Sajaia, Zurab. "Maximum likelihood estimation of a bivariate ordered probit model: implementation and Monte Carlo simulations." The Stata Journal 4.2 (2008): 1-18.
The code i am trying is:
Stata returns with giving me the following error:
. bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit)
no prior specified for x50:x22_5
I also tried:
Stata returns with the following error:
. bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit)
no prior specified for x50:x22_5
I suspect that i am making a huge mistake in my code. Can anyone please guide me on this?
Thank you in advance for your help!
Behram
I am using Zurab Sajaia's bioprobit routine in the "llevaluator" in my "bayesmh" command.
The reference to Stata's bioprobit is:
Sajaia, Zurab. "Maximum likelihood estimation of a bivariate ordered probit model: implementation and Monte Carlo simulations." The Stata Journal 4.2 (2008): 1-18.
The code i am trying is:
Code:
bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit) prior ({x50:} {x51:}, normal(0,1000))
Stata returns with giving me the following error:
. bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit)
no prior specified for x50:x22_5
I also tried:
Code:
bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit) prior ({x50:} {x51:}, normal(0,1000)) prior({x50:_cons} {x51:_cons}, normal(0,1000)) prior({x50:x22_5} {x50:x52_5} {x51:x22_5} {x51:x53_2}, normal(0,1000))
. bayesmh (x50 x22_5 x52_2) (x51 x22_5 x53_2), llevaluator(bioprobit)
no prior specified for x50:x22_5
I suspect that i am making a huge mistake in my code. Can anyone please guide me on this?
Thank you in advance for your help!
Behram
Comment