pgmm(formula, data, subset, na.action,
effect = c("twoways", "individual"),model = c("onestep", "twosteps"),
transformation = c("d", "ld"),fsm = NULL, index = NULL, ...)
######
The effect argument is either "twoways" (the default), or "individual" .
"individual": the model is estimated in first differences
"twoways": the model is estimated in first differences and time dummies are included.
#######
transformation:"d" (the default value) for the“difference GMM”model(一阶差分GMM)
or "ld" for the “system GMM"(系统GMM)
fsm the matrix for the one step estimator :
if transformation="d",one of "I" (identity matrix) or "G" (=D'D where D is the first-difference operator)
if transformation="ld", one of "GI" or "full"
"onestep" estimators are computed using a known weighting matrix.
"twosteps"method:
利用第一阶段估计得到的残差构造方差-协方差矩阵,进而重新估计模型.
1.Two-step feasible GMM
Step 1: Take W = I (the identity matrix),...
Step 2: Take..........
2.Iterated GMM
3.Continuously Updating GMM
更进一步了解,请参考:
package "gmm",gmm.pdf
package "plm",panel Data Econometrics in R: the plm Package.pdf