Hi All,
I am trying to decompose my time series data into trend and seasonality and using proc X12 for this in SAS VIYA3.4. After executing the following code i am facing error msg :-
proc x12 data=sales_data date=date;
var sales_qty;
transform power=0;
arima model=( (0,1,1)(0,1,1) );
estimate;
x11;
run;
I have already tried giving interval = week as well, but it doesnt work. Any help will be appreciated
Thanks
Ankush
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.