proc ESM data=sasuser.weeklysupply outfor=out1 back=5 lead=20 plot=(modelforecasts models forecastsonly);
id date interval=week;
forecast supply / model=winters;
PRINT=ALL;
run;
The print function is not working in proc ESM.
I am getting the following error message:
Try
proc ESM data=sasuser.weeklysupply outfor=out1 back=5 lead=20 plot=(modelforecasts models forecastsonly) PRINT=ALL ; id date interval=week; forecast supply / model=winters; run;
The documentation shows the PRINT options go on the PROC statement not a separate statement as you had it.
Try
proc ESM data=sasuser.weeklysupply outfor=out1 back=5 lead=20 plot=(modelforecasts models forecastsonly) PRINT=ALL ; id date interval=week; forecast supply / model=winters; run;
The documentation shows the PRINT options go on the PROC statement not a separate statement as you had it.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.