gel | R Documentation |
Function to estimate a vector of parameters based on moment conditions using the GEL method as presented by Newey-Smith(2004) and Anatolyev(2005).
gel(g, x, tet0 = NULL, gradv = NULL, smooth = FALSE,
type = c("EL","ET","CUE","ETEL","HD","ETHD","RCUE"),
kernel = c("Truncated", "Bartlett"), bw = bwAndrews,
approx = c("AR(1)", "ARMA(1,1)"), prewhite = 1, ar.method = "ols",
tol_weights = 1e-7, tol_lam = 1e-9, tol_obj = 1e-9, tol_mom = 1e-9,
maxiterlam = 100, constraint = FALSE, optfct = c("optim", "optimize",
"nlminb"), optlam = c("nlminb", "optim", "iter", "Wu"), data,
Lambdacontrol = list(), model = TRUE, X = FALSE, Y = FALSE,
TypeGel = "baseGel", alpha = NULL, eqConst = NULL,
eqConstFullVcov = FALSE, onlyCoefficients=FALSE, ...)
evalGel(g, x, tet0, gradv = NULL, smooth = FALSE,
type = c("EL", "ET", "CUE", "ETEL", "HD", "ETHD","RCUE"),
kernel = c("Truncated", "Bartlett"), bw = bwAndrews,
approx = c("AR(1)", "ARMA(1,1)"), prewhite = 1,
ar.method = "ols", tol_weights = 1e-7, tol_lam = 1e-9, tol_obj = 1e-9,
tol_mom = 1e-9, maxiterlam = 100, optlam = c("nlminb", "optim",
"iter", "Wu"), data, Lambdacontrol = list(),
model = TRUE, X = FALSE, Y = FALSE, alpha = NULL, ...)
g |
A function of the form |
tet0 |
A |
x |
The matrix or vector of data from which the function |
gradv |
A function of the form |
smooth |
If set to TRUE, the moment function is smoothed as proposed by Kitamura(1997) |
type |
"EL" for empirical likelihood, "ET" for exponential tilting, "CUE" for continuous updated estimator, "ETEL" for exponentially tilted empirical likelihood of Schennach(2007), "HD" for Hellinger Distance of Kitamura-Otsu-Evdokimov (2013), and "ETHD" for the exponentially tilted Hellinger distance of Antoine-Dovonon (2015). "RCUE" is a restricted version of "CUE" in which the probabilities are bounded below by zero. In that case, an analytical Kuhn-Tucker method is used to find the solution. |
kernel |
type of kernel used to compute the covariance matrix of the vector of sample moment conditions (see |
bw |
The method to compute the bandwidth parameter. By default it is |
prewhite |
logical or integer. Should the estimating functions be prewhitened? If |
ar.method |
character. The |
approx |
a character specifying the approximation method if the bandwidth has to be chosen by |
tol_weights |
numeric. Weights that exceed |
tol_lam |
Tolerance for |
maxiterlam |
The algorithm to compute |
tol_obj |
Tolerance for the gradiant of the objective function to compute |
optfct |
Only when the dimension of |
constraint |
If set to TRUE, the constraint optimization algorithm is used. See |
tol_mom |
It is the tolerance for the moment condition |
optlam |
Algorithm used to solve for the lagrange multiplier in
|
data |
A data.frame or a matrix with column names (Optional). |
Lambdacontrol |
Controls for the optimization of the vector of Lagrange multipliers used by either |
model, X, Y |
logicals. If |
TypeGel |
The name of the class object created by the method |
alpha |
Regularization coefficient for discrete CGEL estimation (experimental). By setting alpha to any value, the model is estimated by CGEL of type specified by the option |
eqConst |
Either a named vector (if "g" is a function), a simple vector for the nonlinear case indicating which of the |
eqConstFullVcov |
If FALSE, the constrained coefficients are assumed to be fixed and only the covariance of the unconstrained coefficients is computed. If TRUE, the covariance matrix of the full set of coefficients is computed. |
onlyCoefficients |
If |
... |
More options to give to |
If we want to estimate a model like Y_t = \theta_1 + X_{2t}\theta_2 + ... + X_{k}\theta_k + \epsilon_t
using the moment conditions Cov(\epsilon_tH_t)=0
, where H_t
is a vector of Nh
instruments, than we can define "g" like we do for lm
. We would have g = y~x2+x3+...+xk
and the argument "x" above would become the matrix H of instruments. As for lm
, Y_t
can be a Ny \times 1
vector which would imply that k=Nh \times Ny
. The intercept is included by default so you do not have to add a column of ones to the matrix H
. You do not need to provide the gradiant in that case since in that case it is embedded in gel
. The intercept can be removed by adding -1 to the formula. In that case, the column of ones need to be added manually to H.
If "smooth" is set to TRUE, the sample moment conditions \sum_{t=1}^n g(\theta,x_t)
is replaced by:
\sum_{t=1}^n g^k(\theta,x_t)
,
where
g^k(\theta,x_t)=\sum_{i=-r}^r k(i) g(\theta,x_{t+i})
,
where r
is a truncated parameter that depends on the bandwidth and k(i)
are normalized weights so that they sum to 1.
The method solves
\hat{\theta} = \arg\min \left[\arg\max_\lambda \frac{1}{n}\sum_{t=1}^n \rho(<g(\theta,x_t),\lambda>) - \rho(0) \right]
evalGel
generates the object of class "gel" for a fixed vector of
parameters. There is no estimation for \theta
, but the optimal
vector of Lagrange multipliers \lambda
is computed. The objective
function is then the profiled likelihood for a given \theta
. It
can be used to construct a confidence interval by inverting the
likelihood ratio test.
'gel' returns an object of 'class' '"gel"'
The functions 'summary' is used to obtain and print a summary of the results.
The object of class "gel" is a list containing at least the following:
coefficients |
|
residuals |
the residuals, that is response minus fitted values if "g" is a formula. |
fitted.values |
the fitted mean values if "g" is a formula. |
lambda |
|
vcov_par |
the covariance matrix of "coefficients" |
vcov_lambda |
the covariance matrix of "lambda" |
pt |
The implied probabilities |
objective |
the value of the objective function |
conv_lambda |
Convergence code for "lambda" (see |
conv_mes |
Convergence message for "lambda" (see |
conv_par |
Convergence code for "coefficients" (see |
terms |
the |
call |
the matched call. |
y |
if requested, the response used (if "g" is a formula). |
x |
if requested, the model matrix used if "g" is a formula or the data if "g" is a function. |
model |
if requested (the default), the model frame used if "g" is a formula. |
Anatolyev, S. (2005), GMM, GEL, Serial Correlation, and Asymptotic Bias. Econometrica, 73, 983-1002.
Andrews DWK (1991), Heteroskedasticity and Autocorrelation Consistent Covariance Matrix Estimation. Econometrica, 59, 817–858.
Kitamura, Yuichi (1997), Empirical Likelihood Methods With Weakly Dependent Processes. The Annals of Statistics, 25, 2084-2102.
Kitamura, Y. and Otsu, T. and Evdokimov, K. (2013), Robustness, Infinitesimal Neighborhoods and Moment Restrictions. Econometrica, 81, 1185-1201.
Newey, W.K. and Smith, R.J. (2004), Higher Order Properties of GMM and Generalized Empirical Likelihood Estimators. Econometrica, 72, 219-255.
Smith, R.J. (2004), GEL Criteria for Moment Condition Models. Working paper, CEMMAP.
Newey WK & West KD (1987), A Simple, Positive Semi-Definite, Heteroskedasticity and Autocorrelation Consistent Covariance Matrix. Econometrica, 55, 703–708.
Newey WK & West KD (1994), Automatic Lag Selection in Covariance Matrix Estimation. Review of Economic Studies, 61, 631-653.
Schennach, Susanne, M. (2007), Point Estimation with Exponentially Tilted Empirical Likelihood. Econometrica, 35, 634-672.
Wu, C. (2005), Algorithms and R codes for the pseudo empirical likelihood method in survey sampling. Survey Methodology, 31(2), page 239.
Zeileis A (2006), Object-oriented Computation of Sandwich Estimators. Journal of Statistical Software, 16(9), 1–16. URL \Sexpr[results=rd]{tools:::Rd_expr_doi("10.18637/jss.v016.i09")}.
Chausse (2010), Computing Generalized Method of Moments and Generalized Empirical Likelihood with R. Journal of Statistical Software, 34(11), 1–35. URL \Sexpr[results=rd]{tools:::Rd_expr_doi("10.18637/jss.v034.i11")}.
Chausse (2011), Generalized Empirical likelihood for a continumm of moment conditions. Working Paper, Department of Economics, University of Waterloo.
# First, an exemple with the fonction g()
g <- function(tet, x)
{
n <- nrow(x)
u <- (x[7:n] - tet[1] - tet[2]*x[6:(n-1)] - tet[3]*x[5:(n-2)])
f <- cbind(u, u*x[4:(n-3)], u*x[3:(n-4)], u*x[2:(n-5)], u*x[1:(n-6)])
return(f)
}
Dg <- function(tet,x)
{
n <- nrow(x)
xx <- cbind(rep(1, (n-6)), x[6:(n-1)], x[5:(n-2)])
H <- cbind(rep(1, (n-6)), x[4:(n-3)], x[3:(n-4)], x[2:(n-5)], x[1:(n-6)])
f <- -crossprod(H, xx)/(n-6)
return(f)
}
n = 200
phi<-c(.2, .7)
thet <- 0.2
sd <- .2
set.seed(123)
x <- matrix(arima.sim(n = n, list(order = c(2, 0, 1), ar = phi, ma = thet, sd = sd)), ncol = 1)
res <- gel(g, x, c(0, .3, .6), grad = Dg)
summary(res)
# The same model but with g as a formula.... much simpler in that case
y <- x[7:n]
ym1 <- x[6:(n-1)]
ym2 <- x[5:(n-2)]
H <- cbind(x[4:(n-3)], x[3:(n-4)], x[2:(n-5)], x[1:(n-6)])
g <- y ~ ym1 + ym2
x <- H
res <- gel(g, x, c(0, .3, .6))
summary(res)
# Using evalGel to create the object without estimation
res <- evalGel(g, x, res$coefficients)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.