Description Usage Arguments Value References Examples
View source: R/KSS_Unit_Root.R
This function allows you to make Kapetanios, Shin and Snell(2003) nonlinear unit root test
1 | KSS_Unit_Root(x, case, lags, lsm)
|
x |
series name, |
case |
if raw data 1 if demeaned data 2 if detrended data 3, |
lags |
maximum lag |
lsm |
lag selection methods if 1 AIC, if 2 BIC, if 3 t-stat significance |
"Model" Estimated model
"Selected lag" the lag order
"Test Statistic" the value of the test statistic
Kapetanios, G., Shin, Y., & Snell, A. (2003). Testing for a unit root in the nonlinear STAR framework. Journal of econometrics, 112(2), 359-379.
Burak Guris, R Uygulamalı Dogrusal Olmayan Zaman Serileri Analizi, DER Yayinevi, 2020.
1 2 3 4 5 6 7 8 9 10 | x <- rnorm(1000)
KSS_Unit_Root(x, case = 1, lags = 6, lsm =1)
y <- cumsum(rnorm(1000))
KSS_Unit_Root(y, 1, 3, 3)
data(IBM)
KSS_Unit_Root(IBM,case = 1,lags = 20,lsm = 3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.