상세 컨텐츠

본문 제목

[시계열 스터디] ARIMA Model part6

심화 스터디/시계열

by min51 2022. 11. 13. 14:55

본문

* 작성자 : 15기 최민경

본 포스팅은 Youtube 김성범 교수님의 ARIMA 모델 - Part6 강의를 참고하여 작성되었습니다.

 

 

<복습>

Q1. AR모델도 white noise의 linear combination으로 표현이 가능하다. (O/X)

A. O

 

 

Q2. ARMA모델도 white noise의 linear combination으로 표현이 가능하다. (O/X)

A. O

 

Q3. white noise인 at의 성질은?

0   

σa2  

0,  시점이 다른 확률변수는 서로 독립

 

σa2    h=0일 때

0    h0일 때

 

Prediction(Forecasting)

Given x1,x2,,xt, want to predict xt+1

 

min  E[(xt+1x^t+1)2]

-> MSE 최소화하는 x^t+1 찾기

 

즉, x^t+1=E[xt+1|x1,xt] 

-> conditional expectation

 

1. AR(1)

Q. 여기서 μ의 역할은?

A. constant term

 

Q. 그렇다면 x^t+1는 어떻게 표현될까?

A. xt+1의 conditional expectation으로

 

-> 점추정(point estimation)

 

prediction interval 

 

Q. prediction interval과 confidence interval의 차이점은 무엇일까?

A. confidence interval은 population의 mean값의 confidence를 주는 것이고, prediction interval은 모델에 대해 새로운 데이터가 가지게 될 예측값의 confidence를 주는 것.  Prediction interval은 mean값과 달리 point값을 예측하는 것이기 때문에 큰 uncertainty를 포함하고 있어 confidence interval에 비해 interval이 더 넓게 나타난다.

 

 

 

 

정리해보면,

AR(1) model's point estimation = x^t+1=ϕxt+μ

                                           x^t+2=ϕxt+1+μ

                     prediction interval = x^t+1±z(1α2)σa

2. AR(2)

- point predicted value : x^t+1=μ+ϕ1xt+ϕ2xt1

- prediction interval : 

 

 

- point predicted value : x^t+2=μ+ϕ1x^t+1+ϕ2xt

- prediction interval : x^t+2±z(1α2)(1+ϕ12)σa2

 

- point predicted value : x^t+3=μ+ϕ1x^t+2+ϕ2x^t+1

- prediction interval : x^t+3±z(1α2)(1+ϕ12(1+ϕ12)+ϕ22)σa2

 

3. ARMA(1,1)

- point predicted value : x^t+1=ϕxt+θat~+μ

Q. ARMA(1,1)은 위에서 주어진

말고 다르게 표현할 수 있는데, 과연 어떻게 표현할 수 있을까?

A. white noise의 무한합으로 표현 가능

 

- prediction interval : x^t+1±z(1α2)σa

Q. 위와 같이 xt+1의 PI를 구할 수 있는데, 그렇다면 xt+2의 PI는 길이가 어떻게 될까?

A. 더 길어진다. 더 먼 미래를 예측하는 것이기 때문에 더 긴 구간으로 예측한다.

 

- (1-a)100% Prediction Interval for xt+2 in ARMA(1,1)

= x^t+2±z(1α2)(1+ψ12)σa2,ψ1=ψ+θ 

- (1-a)100% Prediction Interval for xt+3 in ARMA(1,1)

= x^t+3±z(1α2)(1+ψ12+ψ22)σa2,ψ1=ϕ+θ,ψ2=ϕ2+ϕθ 

 

4. PACF(Partial autocorrelation function)

ACF에서 시차 사이에 낀 다른 시차의 영향력을 제거한 함수

 

- conditional function

- correlation between two variables under the assumption that we take into account the values of some other set of variables.

 

The partial correlation between Y and X3=Cov(Y,X3|X1,X2)V(Y|X1,X2)V(X3|X1,X2)

 

The partial correlation between $X_{t} and X_{t-h}$

Xth=cov(xt,xth|xt1,,xth+1)V(xt|xt1,,xth+1)V(xth|xt1,,xth+1)

관련글 더보기

댓글 영역