pccep(formula, data, subset, na.action,
residuals = c("standard", "cce","ccemg"),
index = NULL, trend = FALSE, ...)
## S3 method for class 'pccep':
summary(object, ...)
## S3 method for class 'summary.pccep':
print(x,digits = max(3, getOption("digits") -
2), width = getOption("width"),...)pccep,data.frame,lm,lm,c("standard", "cce","ccemg"), allows for
returning different inds of residuals for diagnostic purposes,plm.data,c("pccep","panelmodel") containing:NULL, sigma is here only for
conmpatibility reasons (to allow using the same summary and
print methods as pggls),pccep is a function for the estimation of linear panel models by the
Common Correlated Effects Pooled estimator, consistent under the
hypothesis of unobserved common factors and idiosyncratic factor
loadings; the CCEP estimator 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 <- pccep(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp, data = Produc)
summary(ccepmod)Run the code above in your browser using DataLab