Extracts the empirical moment function
It extracts the matrix of empirical moments so that it can be used by the kernHAC
function.
## S3 method for class 'gmmFct' estfun(x, y = NULL, theta = NULL, ...) ## S3 method for class 'gmm' estfun(x, ...) ## S3 method for class 'gel' estfun(x, ...) ## S3 method for class 'tsls' estfun(x, ...) ## S3 method for class 'tsls' model.matrix(object, ...)
x |
A function of the form g(θ,y) or a n \times q matrix with typical element g_i(θ,y_t) for i=1,...q and t=1,...,n or an object of class |
object |
An object of class |
y |
The matrix or vector of data from which the function g(θ,y) is computed if |
theta |
Vector of parameters if |
... |
Other arguments when |
For estfun.gmmFct
, it returns a n \times q matrix with typical element g_i(θ,y_t) for i=1,...q and t=1,...,n. It is only used by gmm
to obtain the estimates.
The method if not yet available for gel
objects.
A n \times q matrix (see details).
Zeileis A (2006), Object-oriented Computation of Sandwich Estimators. Journal of Statistical Software, 16(9), 1–16. URL https://www.jstatsoft.org/v16/i09/.
n = 500 phi<-c(.2,.7) thet <- 0 sd <- .2 x <- matrix(arima.sim(n=n,list(order=c(2,0,1),ar=phi,ma=thet,sd=sd)),ncol=1) 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 <- gmm(g, x,weightsMatrix = diag(5)) gt <- res$gt G <- res$G foc <- gt foc2 <- estfun(res) foc[1:5,] foc2[1:5,]
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.