Title: | Performs Unit Root Test Statistics |
---|---|
Description: | A test to understand the stability of the underlying stochastic data. Helps the user’s understand whether the random variable under consideration is stationary or non-stationary without any manual interpretation of the results. It further ensures to check all the prerequisites and assumptions which are underlying the unit root test statistics and if the underlying data is found to be non-stationary in all the 4 lags the function diagnoses the input data and returns with an optimised solution on the same. |
Authors: | Ankita Sharma [aut, cre] |
Maintainer: | Ankita Sharma <[email protected]> |
License: | GPL-3 |
Version: | 1.1.0 |
Built: | 2024-11-17 04:39:50 UTC |
Source: | https://github.com/cran/UnitStat |
'A test to understand the stability of the underlying stochastic data.Helps the user understand whether the random variable under consideration is stationary or non-stationary without any manual interpretation of the results.It further ensures to check all the prerequisites and assumptions which are underlying the unit root test statistics and if the underlying data is found to be non-stationary in all the 4 lags the function diagnoses the input data and returns with an optimised.
UnitStat(y, lag = 0, View_results = "True")
UnitStat(y, lag = 0, View_results = "True")
y |
Univariate time series or vector to be tested |
lag |
Numeric.Default is 0.Select Lags to view results at different lags. Maximum number of lags is 4 |
View_results |
Boolean.Default is False. If True is selected the function returns results for all the 4 lags. |
An object with class UnitStat(). Retunrs with a statement explaining the type of input data and its stability. lag - Displays results for the lag number selected View_results - Shows all lag results
Ankita Sharma
Dickey, D. A. and Fuller, W. A. (1981), Likelihood Ratio Statistics for Autoregressive Time Series with a Unit Root, Econometrica, 49, 1057–1072. Hamilton (1994), Time Series Analysis, Princeton University Press
y = runif(50,1,49) UnitStat(y) UnitStat(y,View_results = "T") #To view results at all lags
y = runif(50,1,49) UnitStat(y) UnitStat(y,View_results = "T") #To view results at all lags