Hi Rick- Thanks for the reply. I have tried various ways, including the plots=option as well as 'ods graphics on;'. Below are three versions of code that provide me with the same output. *example #1; proc arima data=arima_data; identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4)); estimate p=1 q=1; forecast lead=21 id=t2 out=arima_fc; run; quit; *example #2; proc arima data=arima_data plots(unpack)=all; identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4)); estimate p=1 q=1; forecast lead=21 id=t2 out=arima_fc; run; quit; *example #3; proc arima data=arima_data plots(only)=(residual(smooth) forecast(forecasts)); identify var=sw(52) nlag=24 scan esacf stationarity=(adf=(0,1,2,3,4)); estimate p=1 q=1; forecast lead=21 id=t2 out=arima_fc; run; quit; Log Results same for each piece of code above: NOTE: The data set WORK.ARIMA_FC has 230 observations and 7 variables. NOTE: The PROCEDURE ARIMA printed pages 57-62. NOTE: PROCEDURE ARIMA used (Total process time): real time 0.08 seconds cpu time 0.01 seconds Thanks again, Kyle
... View more