ARMA 模型

Python 中的時間序列分析

Rob Reider

Adjunct Professor, NYU-Courant Consultant, Quantopian

ARMA 模型

  • ARMA(1,1) 模型:

$\large \quad \quad R_t = \mu \ + \ \phi \ R_{t-1} \ + \ \epsilon_t \ + \ \theta \ \epsilon_{t-1}$

Python 中的時間序列分析

ARMA、AR、MA 模型的轉換

  • 將 AR(1) 轉為 MA($\infty$)

$R_t = \mu + \phi R_{t-1} + \epsilon_t$

$R_t = \mu + \phi(\mu + \phi R_{t-2} + \epsilon_{t-1}) + \epsilon_t$

$\vdots$

$R_t = \dfrac{\mu}{1-\phi} + \epsilon_t + \phi\epsilon_{t-1} - \phi^2\epsilon_{t-2} + \phi^3\epsilon_{t-3} + ...$

Python 中的時間序列分析

一起來練習吧!

Python 中的時間序列分析

Preparing Video For Download...