标题: [求助]关于ARIMA模型中forecasting with input variables [打印本页] 作者: shiyiming 时间: 2007-11-5 22:32 标题: [求助]关于ARIMA模型中forecasting with input variables 以下是我自己改进的一段程序,
AO and LS 在下面的程序中是input series , 按照SAS HELP中说的如果没有给定 input series 模型,那么在forecast 期间的需要用到input series 值就取 last actual value。我的理解有错吗?如果没错,下面程序为什么不能得到预测值。但若我在原始的data set 中加入若干缺失值时,就能得到预测值。
请各位高手指点一下!
data b_j_seriesj;
input x y @@;
label x = 'Input Gas Rate'
y = 'Output CO2';
t=_n_;
cards;
(具体数据不写了)
;