考虑以下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
在这里可以使用哪些选项?我试过几种组合,但都不成功。
经过进一步的实验,以下是解决方案:
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