lm function to
transformed data.plm(formula, data, subset, na.action, effect = "individual",
model = "within", instruments = NULL, random.method = "swar",
inst.method = "bvk", index = NULL, pvar = TRUE, ...)
## S3 method for class 'plm':
summary(object, ...)
## S3 method for class 'summary.plm':
print(x, digits = max(3, getOption("digits") - 2),
width = getOption("width"), ...)"plm",data.frame,lm,lm,"individual", "time" or "twoways","pooling", "within",
"between", "random", and "ht","swar" (the default
value), "amemiya", "walhus" and "nerlove","bvk" and "baltagi",TRUE, the pvar function is called,c("plm","panelmodel"). A "plm" object has the following elements :
print, summary and print.summary methods. A specific summary method is provided for objects of class
"plms", which returns an object of class summary.plms
and prints a table of the coefficients of the within and random
models and their standard errors.
plm is a general function for the estimation of linear
panel models. It offers limited support for unbalanced panels and
estimation of two--ways effects models. For random effect models, 4 estimators of the transformation
parameter are available : swar (Swamy and Arora),
amemiya, walhus (Wallace and Hussain) and nerlove.
Instrumental variables estimation is obtained using different
syntaxes. If for example, the model is y~x1+x2+x3, x1,
x2 are endogenous and z1, z2 are external
instruments, the model can be estimated with :
formula=y~x1+x2+x3, instruments=~x3+z1+z2,formula=y~x1+x2+x3, instruments=~.-x1-x2+z1+z2,formula=y~x1+x2+x3 | x3+z1+z2,formula=y~x1+x2+x3 | .-x1-x2+z1+z2. Balestra and Varadharajan--Krishnakumar's or Baltagi's method is used if
inst.method="bvk" or if inst.method="baltagi".
The Hausman and Taylor estimator is computed if model="ht".
Balestra, P. and Varadharajan--Krishnakumar, J. (1987) Full information estimations of a system of simultaneous equations with error components structure, Econometric Theory, 3, pp.223--246. Baltagi, B.H. (1981) Simultaneous equations with error components, Journal of econometrics, 17, pp.21--49. Baltagi, B.H. (2001) Econometric Analysis of Panel Data. John Wiley and sons. ltd.
Hausman, J.A. and Taylor W.E. (1981) Panel data and unobservable individual effects, Econometrica, 49, pp.1377--1398. Nerlove, M. (1971) Further evidence on the estimation of dynamic economic relations from a time--series of cross--sections, Econometrica, 39, pp.359--382.
Swamy, P.A.V.B. and Arora, S.S. (1972) The exact finite sample properties of the estimators of coefficients in the error components regression models, Econometrica, 40, pp.261--275.
Wallace, T.D. and Hussain, A. (1969) The use of error components models in combining cross section with time series data, Econometrica, 37(1), pp.55--72.
data("Produc", package="Ecdat")
zz <- plm(log(gsp)~log(pcap)+log(pc)+log(emp)+unemp, data=Produc, index=c("state","year"))
summary(zz)Run the code above in your browser using DataLab