0

考虑以下 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

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

4

1 回答 1

0

经过进一步的实验,这里是解决方案:

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
于 2022-01-26T22:12:55.487 回答