| MacKinnonPValues | R Documentation |
A collection and description of functions to compute the distribution and quantile function for MacKinnon's unit root test statistics.
punitroot(q, N = Inf, trend = c("c", "nc", "ct", "ctt"),
statistic = c("t", "n"), na.rm = FALSE)
qunitroot(p, N = Inf, trend = c("c", "nc", "ct", "ctt"),
statistic = c("t", "n"), na.rm = FALSE)
unitrootTable(trend = c("c", "nc", "ct", "ctt"), statistic = c("t", "n"))
q |
vector of quantiles or test statistics. Missing values are allowed. |
p |
a numeric vector of probabilities. Missing values are allowed. |
N |
the number of observations in the sample from which the quantiles are to be computed. |
na.rm |
a logical value. If set to |
statistic |
a character string describing the type of test statistic. Valid
choices are |
trend |
a character string describing the regression from which the
quantiles are to be computed. Valid choices are: |
punitroot computes the cumulative probability of the asymptotic
or finite sample distribution of the unit root test statistics.
qunitroot computes the quantiles of the asymptotic or finite
sample distribution of the unit root test statistics, given the
probabilities.
unitrootTable produces tables of p-values from MacKinnon's
response surface.
for punitroot and qunitroot, a numeric vector,
for unitrootTable, a matrix with attribute "control"
containing information about the type of test.
The function punitroot and qunitroot use Fortran
routines and the response surface approach from J.G. MacKinnon (1988).
Many thanks to J.G. MacKinnon putting his code and tables under the
GPL license, which made this implementation possible.
J.G. MacKinnon for the underlying Fortran routine and the tables,
Diethelm Wuertz for the Rmetrics R-port.
Dickey, D.A., Fuller, W.A. (1979); Distribution of the estimators for autoregressive time series with a unit root, Journal of the American Statistical Association 74, 427–431.
MacKinnon, J.G. (1996); Numerical distribution functions for unit root and cointegration tests, Journal of Applied Econometrics 11, 601–618.
Phillips, P.C.B., Perron, P. (1988); Testing for a unit root in time series regression, Biometrika 75, 335–346.
## Asymptotic quantile of t-statistic
qunitroot(0.95, trend = "nc", statistic = "t")
## 1st argument a vector
qunitroot(c(0.90, 0.95), trend = "nc", statistic = "t")
## Finite sample quantile of n-statistic
qunitroot(0.95, N = 100, trend = "nc", statistic = "n")
## Asymptotic cumulative probability of t-statistic
punitroot(1.2836, trend = "nc", statistic = "t")
## Finite sample cumulative probability of n-statistic
punitroot(1.2836, N = 100, trend = "nc", statistic = "n")
## Mac Kinnon's unitrootTable
unitrootTable(trend = "nc")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.