Displaying 20 results from an estimated 5000 matches similar to: "Tobit variance covariance matrix"
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
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
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
2009 Jun 08
0
Using survreg for Tobit
I am using survreg from the survival package to run a left censored tobit
model on “non-survival” data. I have to four questions that I hope someone
can help me with:
1) Is there anything I should take into consideration when using frailty()
to estimate random intercepts?
2) Is there anyway of extracting the estimated intercepts produced by
survreg when using frailty()?
3) Can someone point
2007 May 11
0
Tobit model and an error message
Dear R users:
I am using survreg for modeling left censored longitudinal data. When I am using the following code for fitting the tobit model I am getting some output with an warning message(highlighted with red color):
> survreg(Surv(y, y>=0, type='left')~x + frailty(id), cytokine.data, weight=w, dist='gaussian', scale=1)
Call:
survreg(formula = Surv(y, y >= 0, type
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
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
2008 Jul 02
1
Tobit Estimation with Panel Data
Hi all!
Do you know if there is any R function/package that can be used to
estimate "tobit" models with panel data (e.g. with random individual
effects)?
In economics, a "tobit" model is a model with a dependent variable that is
left-censored at zero. Hence, it is a special case of a survival model and
can be estimated using the "survival" package (see e.g.
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
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
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]]
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 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
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
2005 May 04
1
Double hurdle model in R
I am interested in utilizing this so called "double hurdle" model
in my study. We can write the model in the following way:
if (z'a + u > 0 & x'b + e > 0) y = x'b + e, else y = 0
In the model, consumption y is the (left-) censored dependent variable. e
and u are the normally distributed error terms. z'a is the participation
equation and x'b is the
2013 Sep 12
0
predict from tobit regression
Dear R experts,
I am currently working on a rather simple tobit regression, where the
dependet variable is left-censored (>0). I would like to apply a Tobit
regression and then use the parameters of this regression to make a
prediction with new data. The intention behind this is to do an
extrapolation.
by using the VGAM or AER package, I already succeeded in getting fitted
values. However
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]]
2009 Apr 07
0
HELP: Use predict for Tobit Model. How to predict values in Tobit Model???
Hello,
I am working on a Tobit Model for a consumer good, left censored with zero.
Relation: Sales of product depend on price, promotion (dummy), Season(dummy)
and store (dummy)
Used standard Tobitmodel with package(AER) vor a 48 week period:
tobitmodel<-tobit(SALE~Price+Promotion+Season+Store,data= datatobit)
Now I want to predict the values for week 49-52.
Used predict device:
2008 Apr 25
3
Use of survreg.distributions
Dear R-user:
I am using survreg(Surv()) for fitting a Tobit model of left-censored longitudinal data. For logarithmic transformation of y data, I am trying use survreg.distributions in the following way:
tfit=survreg(Surv(y, y>=-5, type="left")~x + cluster(id), dist="gaussian", data=y.data, scale=0, weights=w)
my.gaussian<-survreg.distributions$gaussian