考虑以下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这里有什么选择?我尝试过几种组合,但没有一种成功。
发布于 2022-01-26 22:12:55
经过进一步的实验,以下是解决方案:
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=displayhttps://stackoverflow.com/questions/70866461
复制相似问题