plm (version 1.6-5)

pggls: General FGLS Estimators

Description

General FGLS estimators for panel data (balanced or unbalanced)

Usage

pggls(formula, data, subset, na.action, effect = c("individual", "time"), model = c("within","random","pooling","fd"), index = NULL, ...) "summary"(object, ...) "print"(x,digits = max(3, getOption("digits") - 2), width = getOption("width"), ...)

Arguments

formula
a symbolic description of the model to be estimated,
object, x
an object of class pggls,
data
a data.frame,
subset
see lm,
na.action
see lm,
effect
the effects introduced in the model, one of "individual" or "time",
model
one of "within", "pooling", "random" or "fd",
index
the indexes, see pdata.frame,
digits
digits,
width
the maximum length of the lines in the print output,
...
further arguments.

Value

An object of class c("pggls","panelmodel") containing:

Details

pggls is a function for the estimation of linear panel models by general feasible generalized least squares, either with or without fixed effects. General FGLS is based on a two-step estimation process: first a model is estimated by OLS (pooling), fixed effects (within) or first differences (fd), then its residuals are used to estimate an error covariance matrix for use in a feasible-GLS analysis. This framework allows the error covariance structure inside every group (if effect="individual", else symmetric) of observations to be fully unrestricted and is therefore robust against any type of intragroup heteroskedasticity and serial correlation. Conversely, this structure is assumed identical across groups and thus general FGLS estimation is inefficient under groupwise heteroskedasticity. Note also that this method requires estimation of $T(T+1)/2$ variance parameters, thus efficiency requires N > > T (if effect="individual", else the opposite). The model="random" and model="pooling" arguments both produce an unrestricted FGLS model as in Wooldridge, Ch. 10, although the former is deprecated and included only for retro--compatibility reasons. If model="within" (the default) then a FEGLS (fixed effects GLS, see ibid.) is estimated; if model="fd" a FDGLS (first-difference GLS).

References

Kiefer, N. M. (1980) Estimation of Fixed Effects Models for Time Series of Cross-Sections with Arbitrary Intertemporal Covariance, Journal of Econometrics, 14(2), pp. 195--202.

Im, K. S. and Ahn, S. C. and Schmidt, P. and Wooldridge, J. M. (1999) Efficient Estimation of Panel Data Models with Strictly Exogenous Explanatory Variables, Journal of Econometrics, 93(1), pp. 177--201.

Wooldridge, J. M. (2002) Econometric Analysis of Cross Section and Panel Data, MIT Press.

Wooldridge, J. M. (2010) Econometric analysis of cross-section and Panel Data, 2nd ed., MIT Press.

Examples

Run this code
data("Produc", package = "plm")
zz_wi <- pggls(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp, data = Produc, model = "within")
summary(zz_wi)

zz_pool <- pggls(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp, 
                 data = Produc, model = "pooling")
summary(zz_pool)

zz_fd <- pggls(log(gsp) ~ log(pcap) + log(pc) + log(emp) + unemp,
               data = Produc, model = "fd")
summary(zz_fd)



Run the code above in your browser using DataLab