I did a simple:
PROC ARIMA DATA=WORK.TMP4TempTableNewTimeID ;
IDENTIFY
VAR=sales
NLAG=12
;
run;
but I got the error 'PROC ARIMA not found.' I know that some features in SAS needs to be purchased, but since this is using Enterprise guide, it actually has an ARIMA function in it's menu and I was able to use it.
Is there a reason that coding it does not work?
And I want to code it just so I can learn the syntax.
PROC ARIMA DATA=WORK.TMP4TempTableNewTimeID ;
IDENTIFY
VAR=sales
NLAG=12
;
run;
but I got the error 'PROC ARIMA not found.' I know that some features in SAS needs to be purchased, but since this is using Enterprise guide, it actually has an ARIMA function in it's menu and I was able to use it.
Is there a reason that coding it does not work?
And I want to code it just so I can learn the syntax.