Title: | Prais-Winsten Estimator for AR(1) Serial Correlation |
---|---|
Description: | The Prais-Winsten estimator (Prais & Winsten, 1954) takes into account AR(1) serial correlation of the errors in a linear regression model. The procedure recursively estimates the coefficients and the error autocorrelation of the specified model until sufficient convergence of the AR(1) coefficient is attained. |
Authors: | Franz X. Mohr [aut, cre] , Michael Škvrňák [ctb] |
Maintainer: | Franz X. Mohr <[email protected]> |
License: | GPL-2 |
Version: | 1.1.3 |
Built: | 2024-11-20 20:27:56 UTC |
Source: | https://github.com/franzmohr/prais |
Monthly microeconomic data from the U.S. chemical industry from February 1978 to December 1988 as used in Krupp and Pollard (1996) and subsequently re-used by Wooldridge (2000) as a textbook dataset. Raw data was obtained from http://fmwww.bc.edu/ec-p/data/wooldridge/barium.dta.
data("barium")
data("barium")
A data frame with 131 rows and 31 variables:
Chinese imports, bar. chl.
Total imports, bar. chl.
Dummy varialbe, which is 1 for all six months before filing.
Dummy varialbe, which is 1 for all six months after filing.
Dummy varialbe, which is 1 for all six months after decision
Dummy varialbe, which is 1 for all twelve months before filing.
Dummy varialbe, which is 1 for all twelve months after filing.
Dummy varialbe, which is 1 for all twelve months after decision.
Chemical production index.
Gasoline production.
Exchange rate index.
Dummy varialbe, which is 1 for spring months.
Dummy varialbe, which is 1 for summer months.
Dummy varialbe, which is 1 for fall months.
Log of chnimp.
Log of gas.
Log of rtwex.
Log of chempi.
Time trend.
Dummy varialbe for February.
Dummy varialbe for March.
Dummy varialbe for April.
Dummy varialbe for May.
Dummy varialbe for June.
Dummy varialbe for July.
Dummy varialbe for August.
Dummy varialbe for September.
Dummy varialbe for October.
Dummy varialbe for November.
Dummy varialbe for December.
Percent of imports from China.
Krupp, C.M., & Pollard, P.S., (1996). Market responses to antidumpting laws: Some evidence from the U.S. chemical industry. Canadian Journal of Economics 29(1), 199–227. doi:10.2307/136159
Wooldridge, J., (2000). Instructional Stata datasets for econometrics. [barium]. Boston College Department of Economics.
Glance
## S3 method for class 'prais' glance(x, ...)
## S3 method for class 'prais' glance(x, ...)
x |
an object of class 'prais', usually, the result of a call to |
... |
additional arguments. Not used. Needed to match generic
signature only. **Cautionary note:** Misspelled arguments will be
absorbed in # load libraries for models and data library(prais) library(wooldridge) data("barium") pw <- prais_winsten(lchnimp ~ lchempi + lgas + lrtwex + befile6 + affile6 + afdec6, data = barium, index = "t") tidy(pw) glance(pw) |
[glance()], [prais::prais_winsten()]
The Prais-Winsten estimator takes into account AR(1) serial correlation of the errors in a linear regression model. The procedure recursively estimates the coefficients and the error autocorrelation of the specified model until sufficient convergence of the AR(1) coefficient is reached. All estimates are obtained by OLS.
prais_winsten( formula, data, index, max_iter = 50L, tol = 1e-06, twostep = FALSE, panelwise = FALSE, rhoweight = c("none", "T", "T1"), ... ) ## S3 method for class 'prais' print(x, digits = max(3L, getOption("digits") - 3L), ...)
prais_winsten( formula, data, index, max_iter = 50L, tol = 1e-06, twostep = FALSE, panelwise = FALSE, rhoweight = c("none", "T", "T1"), ... ) ## S3 method for class 'prais' print(x, digits = max(3L, getOption("digits") - 3L), ...)
formula |
an object of class |
data |
a data frame containing the variables in the model. If panel data is used, it must also contain the ID and time variables. |
index |
a character vector specifying the ID and time variables. If only one variable is provided, it is assumed to be the time variable and the data will be reordered accordingly. |
max_iter |
integer specifying the maximum number of allowed iterations. Default is 50. |
tol |
numeric specifying the maximum absolute difference between the estimator of |
twostep |
logical. If |
panelwise |
logical. If |
rhoweight |
character specifying how |
... |
arguments passed to |
x |
an object of class "prais", usually, a result of a call to |
digits |
the number of significant digits to use when printing. |
If takes a value above 1 during the estimation process,
the Prais-Winsten transformation cannot be applied to the first
observations, because
is not real. These observations
are dropped during the respective iteration and the estimator effectively becomes
the Cochrane-Orcutt estimator.
If panelwise = TRUE
, twostep = FALSE
and rhoweight = "none"
,
each individual estimate of is re-estimated until convergence is achieved for all coefficients.
If panelwise = TRUE
, the calculation of can be further specified in argument
rhoweight
. If rhoweight = "none"
, is assumed to be panel-specific. If
rhoweight = "T"
, is calculated as a weighted mean of panel-specific estimates, where
the number of available observations per panel, i.e.
, is used as weight. If
rhoweight = "T1"
,
is calculated as a weighted mean of panel-specific estimates, where the number of available
observations per panel minus one, i.e.
, is used as weight.
A list of class "prais"
containing the following components:
coefficients |
a named vector of coefficients. |
rho |
the values of the AR(1) coefficient |
residuals |
the residuals, that is the response minus the fitted values. |
fitted.values |
the fitted mean values. |
rank |
the numeric rank of the fitted linear model. |
df.residual |
the residual degrees of freedom. |
call |
the matched call. |
terms |
the terms object used. |
model |
the original model frame, i.e., before the Prais-Winsten transformation. |
index |
a character specifying the ID and time variables. |
Beck, N. L. and Katz, J. N. (1995): What to do (and not to do) with time-series cross-section data. American Political Science Review 89, 634-647.
Prais, S. J. and Winsten, C. B. (1954): Trend Estimators and Serial Correlation. Cowles Commission Discussion Paper, 383 (Chicago).
Wooldridge, J. M. (2013): Introductory Econometrics. A Modern Approach. 5th ed. Mason, OH: South-Western Cengage Learning Cengage.
# Generate an artificial sample set.seed(1234567) n <- 100 x <- sample(20:40, n, replace = TRUE) rho <- .5 # AR(1) errors u <- rnorm(n, 0, 5) for (i in 2:n) { u[i] <- u[i] + rho * u[i - 1] } pw_sample <- data.frame("x" = x, "y" = 10 + 1.5 * x + u, "time" = 1:n) # Estimate pw <- prais_winsten(y ~ x, data = pw_sample, index = "time") summary(pw)
# Generate an artificial sample set.seed(1234567) n <- 100 x <- sample(20:40, n, replace = TRUE) rho <- .5 # AR(1) errors u <- rnorm(n, 0, 5) for (i in 2:n) { u[i] <- u[i] + rho * u[i - 1] } pw_sample <- data.frame("x" = x, "y" = 10 + 1.5 * x + u, "time" = 1:n) # Estimate pw <- prais_winsten(y ~ x, data = pw_sample, index = "time") summary(pw)
Summary method for class "prais"
.
## S3 method for class 'prais' summary(object, ...) ## S3 method for class 'summary.prais' print( x, digits = max(3L, getOption("digits") - 3L), signif.stars = getOption("show.signif.stars"), ... )
## S3 method for class 'prais' summary(object, ...) ## S3 method for class 'summary.prais' print( x, digits = max(3L, getOption("digits") - 3L), signif.stars = getOption("show.signif.stars"), ... )
object |
an object of class |
... |
further arguments passed to or from other methods. |
x |
an object of class |
digits |
the number of significant digits to use when printing. |
signif.stars |
logical. If |
summary.prais
returns a list of class "summary.prais"
,
which contains the following components:
call |
the matched call. |
residuals |
the residuals, that is the response minus the fitted values. |
coefficients |
a named vector of coefficients. |
rho |
the values of the AR(1) coefficient |
sigma |
the square root of the estimated variance of the random error. |
df |
degrees of freedom, a 3-vector (p, n-p, p*), the first being the number of non-aliased coefficients, the last being the total number of coefficients. |
r.squared |
R^2, the 'fraction of variance explained by the model',
where |
adj.r.squared |
the above R^2 statistic 'adjusted', penalising for higher p. |
fstatistic |
(for models including non-intercept terms) a 3-vector with the value of the F-statistic with its numerator and denominator degrees of freedom. |
cov.unscaled |
a |
dw |
a named 2-vector with the Durbin-Watson statistic of the original linear model and the Prais-Winsten estimator. |
index |
a character specifying the ID and time variables. |
Tidy
## S3 method for class 'prais' tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
## S3 method for class 'prais' tidy(x, conf.int = FALSE, conf.level = 0.95, ...)
x |
an object of class 'prais', usually, the result of a call to |
conf.int |
logical indicating whether or not to include a confidence interval in the tidied output. Defaults to FALSE. |
conf.level |
the confidence level to use for the confidence
interval if |
... |
additional arguments. Not used. Needed to match generic
signature only. **Cautionary note:** Misspelled arguments will be
absorbed in # load libraries for models and data library(prais) library(wooldridge) data("barium") pw <- prais_winsten(lchnimp ~ lchempi + lgas + lrtwex + befile6 + affile6 + afdec6, data = barium, index = "t") tidy(pw) glance(pw) |
Semirobust covariance matrix estimators for models of class "prais"
.
## S3 method for class 'prais' vcovHC(x, type = c("const", "HC1", "HC0"), ...)
## S3 method for class 'prais' vcovHC(x, type = c("const", "HC1", "HC0"), ...)
x |
an object of class |
type |
a character string specifying the estimation type. |
... |
not used. |
vcovHC
is a function for estimating a robust covariance matrix of parameters for
the Prais-Winsten estimator. The weighting schemes specified by type are analogous to those in
vcovHC
in package sandwich
with the caveat that only "const"
, "HC0"
and "HC1"
are available.
An object of class "matrix" containing the estimate of the asymptotic covariance matrix of coefficients.
Panel-corrected covariance matrix estimators for models of class "prais"
.
## S3 method for class 'prais' vcovPC(x, pairwise = FALSE, ...)
## S3 method for class 'prais' vcovPC(x, pairwise = FALSE, ...)
x |
an object of class |
pairwise |
logical. If |
... |
not used. |
vcovPC
is a function for estimating a panel-corrected covariance matrix of parameters for
the Prais-Winsten estimator.
An object of class "matrix".
Beck, N. L. and Katz, J. N. (1995): What to do (and not to do) with time-series cross-section data. American Political Science Review 89, 634-647.