带实际值的SAS Proc Arima预测图

带实际值的SAS Proc Arima预测图,sas,Sas,proc Arima是否允许预测图显示实际值和预测值。我找不到任何选择。到目前为止,我一直在将预测数据与实际数据合并并绘制它。这只是我想避免的另一个步骤 谢谢是的。我同意,你想让预测图混乱 试试这个: data seriesg; set sashelp.air; xlog = log(air); run; proc arima data=seriesg plots(only)=(forecast(FORECAST)); identify var=xlog(1,12); estima

proc Arima是否允许预测图显示实际值和预测值。我找不到任何选择。到目前为止,我一直在将预测数据与实际数据合并并绘制它。这只是我想避免的另一个步骤


谢谢

是的。我同意,你想让预测图混乱

试试这个:

data seriesg;
set sashelp.air;
xlog = log(air);
run;

proc arima data=seriesg plots(only)=(forecast(FORECAST));
   identify var=xlog(1,12);
   estimate q=(1)(12) noint method=ml;
   forecast id=date interval=month printall out=b;
run;
quit;