在 gretl 中进行预测

Forecasting in gretl

考虑以下 gretl 脚本 (hansl):

open bjg.gdt
arima 1 1 0 ; 2 1 0 ; g 
series fitted = $yhat
g1 <- gnuplot g fitted --with-lines --time-series --output=display

我接下来要做的是预测,比方说,提前 24 步,即从 1961 年 1 月到 1962 年 12 月。我相信第五行应该是这样的

fcast [options] --plot=display

这里使用什么选项?我尝试了几种组合,但 none 成功了。

经过进一步实验,解决方案如下:

open bjg.gdt
arima 1 1 0 ; 2 1 0 ; g
series fitted = $yhat
g1 <- gnuplot g fitted --with-lines --time-series --output=display
dataset addobs 24
g2 <- fcast --dynamic --out-of-sample --plot=display