nortsTest
An R package for checking normality in time series, for my Final master's work
Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: sciencedirect.com -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.8%) to scientific vocabulary
Repository
An R package for checking normality in time series, for my Final master's work
Basic Info
- Host: GitHub
- Owner: asael697
- License: gpl-2.0
- Language: R
- Default Branch: master
- Size: 720 KB
Statistics
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
- Releases: 0
Metadata Files
README.md

nortsTest: An R Package for Assessing Normality of Stationary Process
nortsTest is an R package for assessing normality of stationary
processes, it tests if a given data follows a stationary Gaussian process.
The package works as an extension of the nortest package that performs
normality tests in random samples (independent data). The package's principal
functions are:
elbouch.test()function that computes the bivariate El Bouch et al. test,epps.test()function that implements the Epps test,epps-bootstrap.test()function that implements the Epps test, approximating the p-values using a sieve-bootstrap procedure.lobato.test()function that implements the Lobato and Velasco's test,lobato-bootstrap.test()function that implements the Lobato and Velasco's test, approximating the p-values using a sieve-bootstrap procedure.rp.test()function that implements the random projections test of Nieto-Reyes, Cuesta-Albertos and Gamboa’s test,vavra.test()function that implements the Psaradakis and Vávra’s test,jb-bootstrap.test()function that implements the Jarque and Bera test, approximating the p-values using a sieve-bootstrap procedure,shapiro-bootstrap.test()function that implements the Shapiro test, approximating the p-values using a sieve-bootstrap procedure,cvm-bootstrap.test()function that implements the Cramer Von Mises test, approximating the p-values using a sieve-bootstrap procedure.
Additionally, inspired in the function checkresiduals() of the
forecast package, we
provide the check_residuals methods for checking model’s
assumptions using the estimated residuals. The function checks
stationarity, homoscedasticity and normality, presenting a report of the
used tests and conclusions.
Checking normality assumptions
r
library(nortsTest)
Classic hypothesis tests for normality such as Shapiro & Wilk, Anderson
& Darling, or Jarque & Bera, do not perform well on dependent data.
Therefore, these tests should not be used to check whether a given time
series has been drawn from a Gaussian process. As a simple example, we
generate a stationary ARMA(1,1) process simulated using an t student
distribution with 7 degrees of freedom, and perform the Anderson-Darling
test from the nortest package.
``` r x = arima.sim(100,model = list(ar = 0.32,ma = 0.25),rand.gen = rt,df = 7)
nortest::ad.test(x)
>
> Anderson-Darling normality test
>
> data: x
> A = 0.50769, p-value = 0.1954
```
The null hypothesis is that the data has a normal distribution and therefore, follows a Gaussian Process. At $\alpha = 0.05$ significance level the alternative hypothesis is rejected and wrongly concludes the data follows a Gaussian process. Applying the Lobato and Velasco's test of our package, the null hypothesis is correctly rejected.
``` r lobato.test(x)
>
> Lobatos and Velascos test
>
> data: x
> lobato = 16.864, df = 2, p-value = 0.0002177
> alternative hypothesis: x does not follow a Gaussian Process
```
Example: stationary AR(2) process
In the next example we generate a stationary AR(2) process, using an
exponential distribution with rate of 5, and perform the Epps and RP
with k = 5 random projections tests. With a significance level at
$\alpha=0.05$, the null hypothesis of non-normality is
rejected.
``` r set.seed(298)
Simulating the AR(2) process
x = arima.sim(250,model = list(ar =c(0.2,0.3)),rand.gen = rexp,rate = 5)
tests
epps.test(x)
>
> epps test
>
> data: x
> epps = 38.158, df = 2, p-value = 5.178e-09
> alternative hypothesis: x does not follow a Gaussian Process
rp.test(x,k = 5)
>
> k random projections test
>
> data: x
> k = 5, lobato = 188.771, epps = 28.385, p-value = 0.0007823
> alternative hypothesis: x does not follow a Gaussian Process
```
Example: stationary VAR(1) process
In the next example we generate a stationary VAR(1) process of dimension p = 2,
using two independent Gaussian AR(1) processes, and perform the El Bouch's
test. With a significance level of $\alpha = 0.05$, the alternative hypothesis of
non-normality is rejected.
``` r set.seed(298)
Simulating the VAR(2) process
x1 = arima.sim(250, model = list(ar =c (0.2))) x2 = arima.sim(250, model = list(ar =c (0.3)))
test
elbouch.test(y = x1, x = x2)
>
> El Bouch, Michel & Comon's test
>
> data: w = (y, x)
> Z = 0.1438, p-value = 0.4428
> alternative hypothesis: w = (y, x) does not follow a Gaussian Process
```
Checking model’s assumptions: cardox data
As an example, we analyze the monthly mean carbon dioxide (in ppm)
from the astsa package, measured at Mauna Loa Observatory, Hawaii.
from March, 1958 to November 2018. The carbon dioxide data measured as
the mole fraction in dry air, on Mauna Loa constitute the longest record
of direct measurements of CO2 in the atmosphere. They were started by C.
David Keeling of the Scripps Institution of Oceanography in March of 1958
at a facility of the National Oceanic and Atmospheric Administration.
``` r library(astsa) data("cardox")
autoplot(cardox,xlab = "years",ylab = " CO2 (ppm)",color = "darkred", size = 1,main = "Carbon Dioxide Levels at Mauna Loa") ```

The time series clearly has trend and seasonal components, for analyzing the cardox data we proposed a Gaussian linear state space model. We use the model’s implementation from the forecast package as follows:
``` r library(forecast)
>
> Attaching package: 'forecast'
> The following object is masked from 'package:astsa':
>
> gas
model = ets(cardox) summary(model)
> ETS(M,A,A)
>
> Call:
> ets(y = cardox)
>
> Smoothing parameters:
> alpha = 0.5591
> beta = 0.0072
> gamma = 0.1061
>
> Initial states:
> l = 314.6899
> b = 0.0696
> s = 0.6611 0.0168 -0.8536 -1.9095 -3.0088 -2.7503
> -1.2155 0.6944 2.1365 2.7225 2.3051 1.2012
>
> sigma: 9e-04
>
> AIC AICc BIC
> 3136.280 3137.140 3214.338
>
> Training set error measures:
> ME RMSE MAE MPE MAPE MASE
> Training set 0.0232403 0.312003 0.2430829 0.006308831 0.06883992 0.1559102
> ACF1
> Training set 0.07275949
```
The best fitted model is a multiplicative level, additive trend and
seasonality state space model. If the model’s assumptions are
satisfied, then the model’s errors behave like a Gaussian stationary
process. These assumptions can be checked using our check_residuals
functions.
In this case, we use an Augmented Dickey-Fuller test for stationary assumption, and a random projections test for normality.
``` r checkresiduals(model,unitroot = "adf",normality = "rp",plot = TRUE)
>
> ***************************************************
>
> Unit root test for stationarity:
>
> Augmented Dickey-Fuller Test
>
> data: y
> Dickey-Fuller = -9.7249, Lag order = 8, p-value = 0.01
> alternative hypothesis: stationary
>
>
> Conclusion: y is stationary
> ***************************************************
>
> Goodness of fit test for Gaussian Distribution:
>
> k random projections test
>
> data: y
> k = 2, lobato = 3.8260, epps = 1.3156, p-value = 0.3328
> alternative hypothesis: y does not follow a Gaussian Process
>
>
> Conclusion: y follows a Gaussian Process
>
> ***************************************************
```

After all the model’s assumptions are checked, the model can be used to forecast.
r
autoplot(forecast(model,h = 12),include = 100,xlab = "years",ylab = " CO2 (ppm)",
main = "Forecast: Carbon Dioxide Levels at Mauna Loa")

How to install nortsTest?
The current development version can be downloaded from GitHub via
``` r if (!requireNamespace("remotes")) install.packages("remotes")
remotes::install_github("asael697/nortsTest",dependencies = TRUE) ```
Additional test functions
The nortsTest package offers additional functions for descriptive
analysis in univariate time series.
uroot.test: performs unit root test for checking stationary in linear time series. The Ljung-Box, Augmented Dickey-Fuller, Phillips-Perron and Kpps tests can be selected with theunit_rootoption parameter.seasonal.test: performs seasonal unit root test for stationary in seasonal time series. Thehegy,chandocsbtests are available with the seasonal option parameter.arch.test: for checking the ARCH effect in time series. The Ljung-Box and Lagrange Multiplier tests can be selected from thearchoption parameter.normal.test: for normal distribution check in time series and random samples. The tests presented above can be chosen for stationary time series. For random samples (independent data), the Anderson & Darling, Shapiro & Wilk's, and Jarque-Bera tests are available with the normality option parameter.
For visual diagnostic, we offer ggplot2 methods for numeric and time-series data. Most of the functions were adapted from Rob Hyndman’s forecast package.
autoplot: For plotting time series objects (tsclass*).gghist: histograms for numeric and univariate time series.ggnorm: quantile-quantile plot for numeric and univariate time series.ggacf&ggpacf: partial and auto correlation functions plots for numeric and univariate time series.check_plot: summary diagnostic plot for univariate stationary time series.
Accepted models for residual check
Currently our check_residuals() and check_plot() methods are valid for
the current models and classes:
ts: for univariate time seriesnumeric: for numeric vectorsarima0: from thestatspackageArima: from theforecastpackagefGARCH: from thefGarchpackagelm: from thestatspackageglm: from thestatspackageHoltandWinters: from thestatsandforecastpackageets: from the forecast packageforecast methods: from theforecastpackage.
For overloading more functions, methods or packages, please make a pull
request or send a mail to: asael_am@hotmail.com.
References
El Bouch, S., Michel, O. & Comon, P. (2022). A normality test for Multivariate dependent samples. Journal of Signal Processing. Volume 201.
Psaradakis, Z. and Vávra, M. (2020) Normality tests for dependent data: large-sample and bootstrap approaches. Communications in Statistics-Simulation and Computation. 49 (2), ISSN 0361-0918.
Psaradakis, Z. & Vávra, M. (2017). A distance test of normality for a wide class of stationary process. Journal of Econometrics and Statistics. 2, 50-60.
Nieto-Reyes, A., Cuesta-Albertos, J. & Gamboa, F. (2014). A random-projection based test of Gaussianity for stationary processes. Computational Statistics & Data Analysis, Elsevier. 75(C), 124-141.
Hyndman, R. & Khandakar, Y. (2008). Automatic time series forecasting: the forecast package for R. Journal of Statistical Software. 26(3), 1-22.
Lobato, I., & Velasco, C. (2004). A simple test of normality for time series. Journal Econometric Theory. 20(4), 671-689.
Epps, T.W. (1987). Testing that a stationary time series is Gaussian. The Annals of Statistic. 15(4), 1683-1698.
Owner
- Name: Asael A Matamoros
- Login: asael697
- Kind: user
- Location: Helsinki
- Website: https://asael697.github.io/
- Twitter: asael_am
- Repositories: 4
- Profile: https://github.com/asael697
I like probability and statistics :)
GitHub Events
Total
- Issues event: 1
- Issue comment event: 1
Last Year
- Issues event: 1
- Issue comment event: 1
Committers
Last synced: over 2 years ago
Top Committers
| Name | Commits | |
|---|---|---|
| asael697 | a****o@g****m | 48 |
| Asael Alonzo | a****m@a****e | 5 |
| Asael A Matamoros | a****m@h****m | 1 |
| Asael Alonzo | a****m@A****l | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 6
- Total pull requests: 15
- Average time to close issues: 12 months
- Average time to close pull requests: 3 days
- Total issue authors: 1
- Total pull request authors: 1
- Average comments per issue: 1.17
- Average comments per pull request: 0.07
- Merged pull requests: 14
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- asael697 (6)
Pull Request Authors
- asael697 (21)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 359 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 6
- Total maintainers: 1
cran.r-project.org: nortsTest
Assessing Normality of Stationary Process
- Homepage: https://github.com/asael697/nortsTest
- Documentation: http://cran.r-project.org/web/packages/nortsTest/nortsTest.pdf
- License: GPL-2
-
Latest release: 1.1.2
published over 2 years ago
Rankings
Maintainers (1)
Dependencies
- R >= 3.5.0 depends
- methods * depends
- MASS * imports
- forecast * imports
- ggplot2 * imports
- gridExtra * imports
- nortest * imports
- tseries * imports
- uroot * imports
- zoo * imports
- ggfortify * suggests