similar to: Tobit Regression

Displaying 20 results from an estimated 2000 matches similar to: "Tobit Regression"

2006 Feb 12
3
Tobit Regression (residual Assumption)
I'm statistician I need help with tobit regression Is there assumption in tobit regression ? if any, what kind of that ? please help me !!
2005 Apr 20
2
heckit / tobit estimation
Dear All, we (Ott Toomet and I) would like to add functions for maximum likelihood (ML) estimations of generalized tobit models of type 2 and type 5 (*see below) in my R package for microeconomic analysis "micEcon". So far we have called these functions "tobit2( )" and "tobit5( )". Are these classifications well known? How are these functions called in other
2012 Apr 02
1
Bootstrapped Tobit regression - get standard error 0...
I am trying to work out a bootstrapped Tobit regression model. I get the coefficients all right, but they all have standard error zero. And I am unable to figure out why. I know the coefficients are correct because that's what I get when do a Tobit (without bootstrapping). Here's my code: # Bootstrap 95% CI for Tobit regression coefficients? library(boot) library(AER) # for the Affairs
2008 Aug 16
1
Pseudo R2 for Tobit Regression
Dear All: I need some guidance in calculating a goodness-of-fit statistic for a Tobit Regression model. To develop the Tobit regression, I used the tobit() method from the AER package, which is basically a simpler interface to the survreg() method. I've read about pseudo R2 and C-index and was wondering if there is a package that calculates this for me. Also, is there a reason to select
2011 Mar 10
2
tobit regression model
Hi, I'm trying to fit a tobit regression model to some data. When fitting the exact same data in Stata, I have no problems at all, however R won't converge. Its not a maxiters thing, since I've tried increasing this already. I need to be able to fit the model in R since there are users of the code that don't have a Stata license. The code is: require(AER) left = 3.218476 x =
2007 May 04
2
Library & Package for Tobit regression
Hello R-Users: I am want to use tobit regression for left censored panel/longitudinal data. Could you please provide me the name of "library" and/or "package" that will give me option of fitting tobit regression model for longitudinal data? Thank you. Sattar __________________________________________________ [[alternative HTML version deleted]]
2006 Jan 19
2
Tobit estimation?
Folks, Based on http://www.biostat.wustl.edu/archives/html/s-news/1999-06/msg00125.html I thought I should experiment with using survreg() to estimate tobit models. I start by simulating a data frame with 100 observations from a tobit model > x1 <- runif(100) > x2 <- runif(100)*3 > ystar <- 2 + 3*x1 - 4*x2 + rnorm(100)*2 > y <- ystar > censored <- ystar <= 0
2010 Nov 23
4
Tobit model on unbalanced panel
Appreciate any suggestions regarding how to fit an unbalanced panel data to a Tobit model using R functions. I am trying to analyze how real estate capital expenditures (CapEx) are affected by market conditions using a panel Tobit model. The CapEx is either positive or 0, so it is censored. The data are unbalanced panel, including the CapEx of about 5000 properties over about 40 quarters, with the
2003 Jan 15
1
Tobit regression
Does anyone have an R function for the estimation of Tobit regression models (for censored responses), as described, e.g., in Davidson, R. and MacKinnon, J.G., 1993, Section 15.7, Estimation and Inference in Econometrics, Oxford University Press? Thanks. FC. -- Francisco Cribari-Neto voice: +55-81-32718420 Departamento de Estatistica fax: +55-81-32747425 Universidade
2008 Feb 07
2
Tobit model
Hi all, Quick question - Which, if any, of the R packages contains procedures for running Tobit analysis? Regards, Matt --------------------------------- [[alternative HTML version deleted]]
2011 Sep 15
2
Tobit Fixed Effects
Hi there, I need to run a Tobit Fixed Effects in a panel data with 4500 units for 8 years. It is a huge data set, my dependent variable is left truncated at zero, the distribution is skewed and my panel is balanced. Any suggestions on how to do that in R? I tried stuff like survreg, censReg, and tobit but none of them were satisfactory. Thanks, *Felipe Nunes* CAPES/Fulbright Fellow PhD
2009 Dec 03
3
Tobit model fluid milk consumption
Hi all, I'm from Brazil. I fit a Tobit model to FLUID MILK CONSUMPTION (DEPENDENT VARIABLE) data using survreg (attached). I am confused about the output interpretation and I would like yours explanations. Thanks, Marcio Roberto Silva -------------- next part -------------- A non-text attachment was scrubbed... Name: Tobit model.pdf Type: application/pdf Size: 9018 bytes Desc: not
2001 Apr 02
2
Censored or truncated Regression Models/Tobit
Hi, what is the best way to estimate a tobit(truncated) regression model in R ? Is there already a packet available ? Gruss Ralph Leonhardt -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body",
2010 Aug 06
2
Tobit Modelling
Dear R-users, I would like to model data where the response variable consists of many minus ones and many different positive values that seem to follow an apparently separate distribution (ie. -1, -1, 0.5, -1, 3, 3.5, 1.2, -1, -1, 0.4, etc); no values of the response can be less than minus one or between minus and zero (exclusive). I am aware of tobit regression but unaware of exactly how to
2011 Feb 11
1
censReg or tobit: testing for assumptions in R?
Hello! I'm thinking of applying a censored regression model to cross-sectional data, using either the tobit (package survival) or the censReg function (package censReg). The dependent variable is left and right-censored. My hopefully not too silly question is this: I understand that heteroskedasticity and nonnormal errors are even more serious problems in a censored regression than in an
2011 Jul 12
1
fixed effects Tobit, Honore style?
Hi all, Is there any code to run fixed effects Tobit models in the style of Honore (1992) in R? (The original Honore article is here: http://www.jstor.org/sici?sici=0012-9682%28199205%2960%3A3%3C533%3ATLALSE%3E2.0.CO%3B2-2) Cheers David [[alternative HTML version deleted]]
2011 Jan 20
1
number of iterations in a Tobit model
Hi, R users, I'm running a Tobit model but convergence can not be reached within 30 iterations. Is there anyway I can change the max number of iterations? Thanks. Gary [[alternative HTML version deleted]]
2003 Jul 16
1
Tobit analysis
Having read previous correspondance on this topic, am I right in using a gaussian distribution for a tobit model, one article suggests a normal distribution? Also, I want to censure at the upper bound, so, using the survival5 package I use: survreg(Surv(y,y<c,type="right")~x) for a censored regression. Could anybody who's had experience of this, confirm whether I'm in the
2004 Aug 25
0
Censored (Tobit) Regression method
I need to give a quick description of Tobit Regression (TR), including how it differs from ordinary least squares (OLS). I am an ecologist who knows just enough about remote sensing and statistics to be dangerous in both. Now I have found myself doing a remote sensing project where I have used TR: survreg(Surv()). As far as I can tell, no form of Censored Regression has been used in analyzing
2007 May 08
1
Fitting Random effect tobit model
Dear R-user: I have a left censored longitudinally measured data set with 4 variables such as sub (which is id), x (only covariate), y (repeatedly measured response) and w (weights) (note, ?-5? indicates the left censored value in the attached data set). I am using following R codes (?survival? library and ?survreg? package) for fitting a random effect tobit model for the left censored