Running predict() after tobit() in package AER

╄→гoц情女王★ 提交于 2019-12-22 12:31:38

问题


I am doing a tobit analysis on a dataset where the dependent variable (lets call it y) is left censored at 0. So this is what I do:

library(AER) 
fit <- tobit(data=mydata,formula=y ~ a + b + c)

This is fine. Now I want to run the "predict" function to get the fitted values. Ideally I am interested in the predicted values of the unobserved latent variable "y*" and the observed censored variable "y" [See Reference 1].

I checked the documentation for predict.survreg [Reference 2] and I don't think I understood which option gives me the predicted censored variables (or the latent variable).

Most examples I found online advise the following :

predict(fit,type="response").

Again, its not clear what kind of predictions these are.

My guess is that the "type" option in the predict function is the key here, with type="response" meant for the censored variable predictions and type="linear" meant for latent variable predictions.

Can someone with some experience here, shed some light for me please ?

Many Thanks!

References:

  1. http://en.wikipedia.org/wiki/Tobit_model

  2. http://astrostatistics.psu.edu/datasets/2006tutorial/html/survival/html/predict.survreg.html


回答1:


Generally predict-"response" results have been back-transformed to the original scale of data from whatever modeling transformations were used in a regression, whereas the "linear" predictions are the linear predictors on the link transformed scale. In the case of tobit which has an identity link, they should be the same.

You can check my meta-prediction easily enough. I just checked it with the example on the ?tobit page:

plot(predict(fm.tobit2, type="response"), predict(fm.tobit2,type="linear"))



回答2:


I posted a similar question on stats.stackexchange and I got an answer that could be useful for you:

https://stats.stackexchange.com/questions/149091/censored-regression-in-r

There one of the authors of the package shows how to calculate the mean of (ie. prediction) of $Y$ where $Y = max(Y^*,0)$. Using the package AER this has to be done somewhat "by hand".



来源:https://stackoverflow.com/questions/10777088/running-predict-after-tobit-in-package-aer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!