내가 R을 사용하고, 나는 구글에 검색하고 배운 kpss.test()
, PP.test()
그리고 adf.test()
시계열의 정상 성에 대해 알고하는 데 사용됩니다.
그러나 나는 통계학자가 아니며 결과를 해석 할 수 있습니다
> PP.test(x)
Phillips-Perron Unit Root Test
data: x
Dickey-Fuller = -30.649, Truncation lag parameter = 7, p-value = 0.01
> kpss.test(b$V1)
KPSS Test for Level Stationarity
data: b$V1
KPSS Level = 0.0333, Truncation lag parameter = 3, p-value = 0.1
Warning message:
In kpss.test(b$V1) : p-value greater than printed p-value
> adf.test(x)
Augmented Dickey-Fuller Test
data: x
Dickey-Fuller = -9.6825, Lag order = 9, p-value = 0.01
alternative hypothesis: stationary
Warning message:
In adf.test(x) : p-value smaller than printed p-value
나는 수천 개의 시계열을 다루고 있으며 친절하게 시계열의 정상성에 대해 정량적으로 확인하는 방법을 알려줍니다.