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...