Model ruang status untuk exponential smoothing

Peramalan di R

Rob J. Hyndman

Professor of Statistics at Monash University

Innovations state space models

  • Setiap metode exponential smoothing dapat ditulis sebagai "innovations state space model"

ch3_vid4_slides.004.png

Peramalan di R

Innovations state space models

  • Setiap metode exponential smoothing dapat ditulis sebagai "innovations state space model"

ch3_vid4_slides.005.png

Peramalan di R

Innovations state space models

  • Setiap metode exponential smoothing dapat ditulis sebagai "innovations state space model"

ch3_vid4_slides.006.png

Peramalan di R

Innovations state space models

  • Setiap metode exponential smoothing dapat ditulis sebagai "innovations state space model"

ch3_vid4_slides.007.png

Peramalan di R

Innovations state space models

  • Setiap metode exponential smoothing dapat ditulis sebagai "innovations state space model"

ch3_vid4_slides.008.png

  • Model ETS: Error, Tren, Musiman
Peramalan di R

Model ETS

  • Parameter: diestimasi dengan "likelihood", probabilitas data berasal dari model tertentu
  • Untuk galat aditif, ini setara dengan meminimalkan SSE
  • Pilih model terbaik dengan meminimalkan versi terkoreksi dari Akaike's Information Criterion ($AIC_c$)
Peramalan di R

Contoh: trafik udara Australia

ets(ausair)
ETS(M,A,N)
Call:
 ets(y = ausair)
  Smoothing parameters:
    alpha = 0.9999
    beta  = 0.0186
  Initial states:
    l = 6.5249
    b = 0.7562
  sigma:  0.0763
     AIC     AICc      BIC
234.5273 236.0273 243.6705
Peramalan di R

Contoh: trafik udara Australia

ausair %>% ets() %>% forecast() %>% autoplot()

Peramalan dari ETS(M,A,N)

Peramalan di R

Contoh: penjualan obat kortikosteroid bulanan

ets(h02)
ETS(M,Ad,M)
Call:
 ets(y = h02)
  Smoothing parameters:
    alpha = 0.1953
    beta  = 1e-04 
    gamma = 1e-04
    phi   = 0.9798
  Initial states:
    l = 0.3945
    b = 0.0085
    s=0.874 0.8197 0.7644 0.7693 0.6941 1.2838
           1.326 1.1765 1.1621 1.0955 1.0422 0.9924
  sigma:  0.0676
       AIC       AICc        BIC
-122.90601 -119.20871  -63.17985
Peramalan di R

Contoh: penjualan obat kortikosteroid bulanan

h02 %>% ets() %>% forecast() %>% autoplot()

Peramalan dari ETS(M,Ad,M)

Peramalan di R

Ayo berlatih!

Peramalan di R

Preparing Video For Download...