Displaying 6 results from an estimated 6 matches for "e_it".
Did you mean:
_it
2006 Aug 14
1
ARMA(1,1) for panel data
Dear List,
I am new to TS-Modeling in R. I would like to fit an ARMA(1,1) model
for a balanced panel, running Y on a full set of unit and year dummies
using an arma(1,1) for the disturbance:
y_it=unit.dummies+yeardummies+e_it
where: e_it=d*e_it-1+u_it+q*u_it-1
How can I fit this model in R? arma() does not seem to take covariates
(or I don't understand how to specify the function so that it would).
Thank you very much.
Best, Tom
2012 Jul 03
2
Help with lmer formula
Hey all -
I am a newbie on mixed-effects models. I want to estimate the following
model:
Y_it = alpha_0t + alpha_1t*X_it + e_it
alpha_0t = gamma_00 + u_0t
alpha_1t = gamma_10 + gamma_11*W_it + u_1j
Where Y is my outcome, X is my level-1 predictor, and W is my level 2
predictor.
I am not sure if I am doing it right. Is this the correct specification of
the formula?
model = lmer(Y ~ X + X:Y + ( X | ID), data = data)
Also,...
2007 Mar 16
3
corAR1 in a random effects panel
Hi everyone,
I am interested in estimating this type of random effects panel:
y_it = x'_it * beta + u_it + e_it
u_it = rho * u_it-1 + d_it rho belongs to (-1, 1)
where:
u and e are independent and normally zero-mean distributed.
d is also independently normally zero-mean distributed.
So, I want random effects for group i to be correlated in t, following an
AR(1) process.
I am using the mle comma...
2007 Mar 17
1
Correlated random effects in lme
Hello,
I am interested in estimating this type of random effects panel:
y_it = x'_it * beta + u_it + e_it
u_it = rho * u_it-1 + d_it rho belongs to (-1, 1)
where:
u and e are independently normally zero-mean distributed.
d is also independently normally zero-mean distributed.
So, I want random effects for group i to be correlated in t, following an
AR(1) process.
Any idea of how to estimat...
2010 Feb 03
1
Package plm & heterogenous slopes
Dear r-helpers,
I am working with plm package. I am trying to fit a fixed effects (or
a 'within') model of the form
y_it = a_i + b_i*t + e_it, i.e. a model with an individual-specific
intercept and an individual-
specific slope.
Does plm support this directly?
Thanks in advance!
Otto Kassi
2012 Mar 08
1
Panel models: Fixed effects & random coefficients in plm
Hello,
I am using {plm} to estimate panel models. I want to estimate a model that
includes fixed effects for time and individual, but has a random individual
effect for the coefficient on the independent variable.
That is, I would like to estimate the model:
Y_it = a_i + a_t + B_i * X_it + e_it
Where i denotes individuals, t denotes time, X is my independent variable,
and B (beta) is the coefficient on that random variable. I want both a
coefficients to be estimated with fixed effects because I expect them to be
correlated with Y, and B to be estimated using a random effect.
I understand...