Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

My (very basic) knowledge of the Tobit regression model isn't from a class, like I would prefer. Instead, I have picked up pieces of information here and there through several Internet searches. My best guess at the assumptions for truncated regression are that they are very similar to the ordinary least squares (OLS) assumptions. I have no idea if that is correct, though.

Hence my question: What are the assumptions I should check for when performing Tobit regression?

Note: The original form of this question referred to truncated regression, which was not the model I was using or asking about. I have corrected the question.

share|improve this question
1  
You should not be using truncated regression just because you have skewed or bounded data. It is specifically for situations when values below a threshold (eg negative values) are possible, but would not be observed for some reason. Is that the situation you have? – Aniko Dec 10 '10 at 15:28
@Aniko, negative values of the dependent variable don't really make sense (it would mean getting paid to receive a service), but I'd heard that Wooldridge (in Econometric Analysis of Cross Section and Panel Data, 2002) had recommended truncated or censored regression models instead of OLS when $P(Y=0)>0$ yet $Y$ is a continuous random variable over positive values. – Firefeather Dec 10 '10 at 16:27
Huge mistake; I realized I meant Tobit regression the whole time, not Truncated regression. I just changed the question to reflect this error. – Firefeather Jan 24 '11 at 20:25
The Wooldridge reference is still the correct reference; i.e., it refers to Tobit regression. – Firefeather Jan 24 '11 at 20:31
Aniko is right, that tobit might not be the best choice. Have a look at the following to find out about alternatives: ideas.repec.org/p/boc/bost10/2.html – user5644 Oct 18 '11 at 13:19

3 Answers

up vote 3 down vote accepted

If we go for a simple answer, the excerpt from the Wooldridge book (page 533) is very appropriate:

... both heteroskedasticity and nonnormality result in the Tobit estimator $\hat{\beta}$ being inconsistent for $\beta$. This inconsistency occurs because the derived density of $y$ given $x$ hinges crucially on $y^*|x\sim\mathrm{Normal}(x\beta,\sigma^2)$. This nonrobustness of the Tobit estimator shows that data censoring can be very costly: in the absence of censoring ($y=y^*$) $\beta$ could be consistently estimated under $E(u|x)=0$ [or even $E(x'u)=0$].

The notations in this excerpt comes from Tobit model:

\begin{align} y^{*}&=x\beta+u, \quad u|x\sim N(0,\sigma^2)\\ y^{*}&=\max(y^*,0) \end{align} where $y$ and $x$ are observed.

To sum up the difference between least squares and Tobit regression is the inherent assumption of normality in the latter.

Also I always thought that the original article of Amemyia was quite nice in laying out the theoretical foundations of the Tobit regression.

share|improve this answer
Wow! Thanks for finding a viewable reference—I hadn't thought to look on Google Books when looking for a copy of Wooldridge's book. – Firefeather Jan 26 '11 at 5:15

To echo Aniko's comment: The primary assumption is the existence of truncation. This is not the same assumption as the two other possibilities that your post suggests to me: boundedness and sample selection.

If you have a fundamentally bounded dependent variable rather than a truncated one you might want to move to a generalized linear model framework with one of the (less often chosen) distributions for Y e.g. log-normal, gamma, exponential, etc. which respect that lower bound.

Alternatively you might then ask yourself whether you think that the process that generates the zero observations in your model is the same as the one that generates the strictly positive values - prices in your application, I think. If this is not the case then something from the class of sample selection models, (e.g. Heckman models) might be appropriate. In that case you'd be in the situation of specifying one model of being willing to pay any price at all, and another model of what price your subjects would pay if they wanted to pay something.

In short, you probably want to review the difference between assuming truncated, censored, bounded, and sample selected dependent variables. Which one you want will come from the details of your application. Once that first most important assumption is made you can more easily determine whether you like the specific assumptions of any model in your chosen class. Some of the sample selection models have assumptions that are rather difficult to check...

share|improve this answer

@Firefeather: Does your data contain (and can only really ever contain) only positive values? If so, model it using a generalized linear model with gamma error and log link. If it contains zeros then you could consider a two stage (logistic regression for probability of zero and gamma regression for the positive values). This latter scenario can also be modeled as a single regression using a zero inflated gamma. Some great explanations of this were given on a SAS list a few years ago. Start here if interested and search for follow-ups. link text

Might help point you in another direction if the truncated regression turns out implausible.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.