View source: R/check_residuals.R
check_residuals.ts | R Documentation |
Generic function for residuals check analysis, these methods are inspired in the check.residuals
function
provided by the forecast
package.
## S3 method for class 'ts'
check_residuals(
y,
normality = "epps",
unit_root = NULL,
seasonal = NULL,
arch = NULL,
alpha = 0.05,
plot = FALSE,
...
)
y |
Either a time series model,the supported classes are |
normality |
A character string naming the desired test for checking gaussian distribution.
Valid values are |
unit_root |
A character string naming the desired unit root test for checking stationarity.
Valid values are |
seasonal |
A character string naming the desired unit root test for checking seasonality.
Valid values are |
arch |
A character string naming the desired test for checking stationarity. Valid values are
|
alpha |
Level of the test, possible values range from 0.01 to 0.1. By default |
plot |
A boolean value. If |
... |
Other testing parameters |
The function performs a residuals analysis, it prints a unit root and seasonal test to check
stationarity, and a normality test for checking Gaussian distribution. In addition, if the plot option is
TRUE
a time plot, ACF, and histogram of the series are presented.
The function does not return any value
Asael Alonzo Matamoros
Dickey, D. & Fuller, W. (1979). Distribution of the Estimators for Autoregressive Time Series with a Unit Root. Journal of the American Statistical Association. 74, 427-431.
Epps, T.W. (1987). Testing that a stationary time series is Gaussian. The
Annals of Statistic. 15(4), 1683-1698.http://www.jstor.org/stable/2336512.
doi:10.1214/aos/1176350618
Osborn, D., Chui, A., Smith, J., & Birchenhall, C. (1988). Seasonality and the order of integration for consumption. Oxford Bulletin of Economics and Statistics. 50(4), 361-377.
# Generating an stationary arma process
y = arima.sim(100,model = list(ar = 0.3))
check_residuals(y,unit_root = "adf")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.