Dear Statalist Users,
I'm currently trying to estimate a bivarite Tobit model. So far, I discovered two user written commands to do so: bitobit (by Daniel Lawson, 2007) and mvtobit (by Mikkel Barslund, 2007). Both approaches work and give me similar results, except of some differences in the p-values. Both dependent variables (DA, VT) are censored at 0 and regressed on the same set of independent variables (continuous and dummy).
The code looks like:
The command margins, dydx(*) predict (ystar(0,.)) does not work, of course. Can somebody refer references or an approach how I could estimate these conditional effects?
(Edit: I also tried to use Stata's' "cmp" command but couldn't work out how to specify the indicator to get results for a bivariate tobit censored from below. I tried to estimate:
Thank you for suggestions or comments. If I need to give you additional information to solve this issue, please let me know.
Kind regards,
Bianka
I'm currently trying to estimate a bivarite Tobit model. So far, I discovered two user written commands to do so: bitobit (by Daniel Lawson, 2007) and mvtobit (by Mikkel Barslund, 2007). Both approaches work and give me similar results, except of some differences in the p-values. Both dependent variables (DA, VT) are censored at 0 and regressed on the same set of independent variables (continuous and dummy).
The code looks like:
- bitobit estimate, y1(DA) x1(...) y2( VT) x2(...) censor1( D_censor ) censor2( V_censor )
- mvtobit (DA ...) (VT ...), vce(robust)
- E(DA /DA > 0), E(VT / VT > 0), E(DA / DA > 0,VT > 0, E(VT / DA > 0,VT > 0, E(DA / DA > 0,VT = 0, and (VT / DA = 0,VT > 0
(Edit: I also tried to use Stata's' "cmp" command but couldn't work out how to specify the indicator to get results for a bivariate tobit censored from below. I tried to estimate:
- cmp (DA = ... ) (VT = ...), ind(2 2)
Thank you for suggestions or comments. If I need to give you additional information to solve this issue, please let me know.
Kind regards,
Bianka
Comment