Hi Wondering if anyone knows how to run mixed-effect Tobit model? Normally in cross-sectional data would use "proc qlim" but not sure if I can use this code in longitudinal data. My data consist of 4 fixed effects {x1, x2, x3, x4}, random effect intercept z0 and time varying random effect z1 . Example of code using proc mixed if this helps. proc mixed data=data method=ml; class gender treatment; model y= x1 x2 x3 x4 /s; RANDOM intercept time /s; run; If possible I would like to avoid Bayesian as my knowledge is minimal in that field. Many thank,
... View more