Dear All,
I have a question about the difference between tobit and truncreg. The data set includes a censored dependent variable, say wage. I assume the underlying model is a tobit model. But due to some contamination issues, I do not want to use the censored observations in the regression, but just use the uncensored observations (i.e. wage > 0). If I drop the censored observations (wage == 0), I assume that I made the censored data set to a truncated data set. Thus, I tried the following two lines.
I expected the results should be the same from the two lines. But it turns out that the estimated results differ a little bit. Could anyone explain why there exist a difference between the two?
Thank you,
Xu
I have a question about the difference between tobit and truncreg. The data set includes a censored dependent variable, say wage. I assume the underlying model is a tobit model. But due to some contamination issues, I do not want to use the censored observations in the regression, but just use the uncensored observations (i.e. wage > 0). If I drop the censored observations (wage == 0), I assume that I made the censored data set to a truncated data set. Thus, I tried the following two lines.
Code:
tobit wage age education if wage > 0,ll(0) truncreg wage age education if wage > 0, ll(0)
Thank you,
Xu
Comment