View source: R/gets-base-source.R
diagnostics | R Documentation |
Auxiliary function (i.e. not intended for the average user) called by the arx
, getsm
, getsv
, isat
, getsFun
and blocksFun
functions. The diagnostics
function undertakes tests for autocorrelation, ARCH and non-normality in a residual series, and user-defined diagnostics provided via the user.fun
argument (see details). The autocorrelation and ARCH tests are conducted as Ljung and Box (1979) tests for autocorrelation in the residuals and squared residuals, respectively, whereas the test for non-normality is that of Jarque and Bera (1980).
diagnostics(x, ar.LjungB=c(1, 0.025), arch.LjungB=c(1, 0.025),
normality.JarqueB=NULL, verbose=TRUE, user.fun=NULL, ...)
x |
a |
ar.LjungB |
a two element vector or |
arch.LjungB |
a two element vector or |
normality.JarqueB |
|
verbose |
logical. If |
user.fun |
|
... |
further arguments (ignored) to accommodate deleted arguments from past versions of the functions |
The argument user.fun
enables the user to specify additional diagnostics. To do this, the argument should be a list
with at least one entry, name
(of class character
), that contains the name of the user-defined function. The call to this function is executed with do.call
, whose default value on envir
is parent.frame()
. Usually, this will be the global environment (.GlobalEnv
), but it can be changed by adding an entry named envir
to the list that indicates where the user-defined function resides. If the verbose
argument is set to FALSE
, then an entry named pval
must be provided. This entry should contain the chosen significance level or levels, i.e. either a scalar or a vector of length equal to the number of p-values returned by the user-defined diagnostics function (see examples). The user can also specify whether a rejection of the tests should cause the diagnostics to fail (default behaviour) or whether a rejection is desirable. For that purpose, a named entry is.reject.bad
can be added that stores a logical vector of length equal to the number of tests conducted in the user diagnostics function. The first entry of the vector governs the diagnostic decision for the first row that the user diagnostics function returns, the second entry the decision for the second row etc. Additional entries in the list
are passed on as arguments to the user-defined function.
The user-defined function should refer to the named items of the estimation result x
(see examples), and the value returned by the user-defined function should be a matrix of dimension m x 3. Here, m is the number of diagnostic tests performed by the user-defined function. For example, if only a single test is performed, then m = 1 and so the returned value should be a 1 x 3 matrix (or a vector of length 3). The three columns of the m x 3 matrix should contain, in the following order, 1) the value(s) of the test-statistic(s) (or NA
), 2) the degree(s) of freedom(s) (or NA
) of the tests, and 3) the p-value(s) of the test(s). When checking whether the model passes the diagnostics or not, the p-value(s) is(are) checked against the value(s) in the entry named pval
in the list
provided to user.fun
. By default, a calculated p-value below the corresponding element in pval
causes the diagnostics to fail. If a named entry is.reject.bad
exists, this decision rule is only applied to tests whose corresponding entry is TRUE
while the decision rule is reversed for those with entry FALSE
. For these tests, the diagnostics fail if the hypothesis cannot be rejected.
verbose=TRUE |
a |
verbose=FALSE |
a |
Genaro Sucarrat, http://www.sucarrat.net/
Jonas Kurle, https://www.jonaskurle.com/
C. Jarque and A. Bera (1980): 'Efficient Tests for Normality, Homoscedasticity and Serial Independence'. Economics Letters 6, pp. 255-259
G. Ljung and G. Box (1979): 'On a Measure of Lack of Fit in Time Series Models'. Biometrika 66, pp. 265-270
arx
, getsm
, getsv
, isat
, getsFun
, blocksFun
##generate some data:
set.seed(123)
vY <- rnorm(20) #the regressand
mX <- matrix(rnorm(3*20), 20, 3) #the regressors
est <- ols(vY,mX)
##return a data-frame with autocorrelation and ARCH diagnostics (default),
##and check whether they pass (the default p-value is 0.025):
diagnostics(est)
diagnostics(est, verbose=FALSE)
##add the Jarque-Bera normality test to the diagnostics (w/p-value=0.05):
diagnostics(est, normality.JarqueB=0.05)
diagnostics(est, normality.JarqueB=0.05, verbose=FALSE)
##user-defined Shapiro-Wilks test for non-normality of the residuals:
SWtest <- function(x, ...){
tmp <- shapiro.test(x$residuals)
return( c(tmp$statistic, NA, tmp$p.value) )
}
diagnostics(est, user.fun=list(name="SWtest", pval=0.05))
diagnostics(est, user.fun=list(name="SWtest", pval=0.05), verbose=FALSE)
##user-defined test but diagnostics fail if do not reject (illustration only)
diagnostics(est, user.fun=list(name="SWtest", pval=0.05, is.reject.bad = FALSE))
diagnostics(est, user.fun=list(name="SWtest", pval=0.05, is.reject.bad = FALSE),
verbose=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.