pcce(formula, data, subset, na.action, model=c("mg", "p"), residuals = c("defactored", "standard"), index = NULL, trend = FALSE, ...)
"summary"(object, ...)
"print"(x,digits = max(3, getOption("digits") -
2), width = getOption("width"),...)pcce,data.frame,lm,lm,c("mg","p"), selects Mean Groups vs. Pooled CCE model,c("defactored", "standard"), allows for
returning different kinds of residuals,pdata.frame,c("pcce","panelmodel") containing:
NULL, sigma is here only for
conmpatibility reasons (to allow using the same summary and
print methods as pggls),pcce is a function for the estimation of linear panel models by the
Common Correlated Effects Mean Groups or Pooled estimator, consistent under the
hypothesis of unobserved common factors and idiosyncratic factor
loadings; CCE estimators works by augmenting the model by
cross-sectional averages of the dependent variable and regressors in
order to account for the common factors, and adding individual
intercepts and possibly trends.
data("Produc", package = "plm")
ccepmod <- pcce(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp, data = Produc, model="p")
summary(ccepmod)
Run the code above in your browser using DataLab