BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ankush2301
Calcite | Level 5

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 :-

 

NOTE: This release of the X13 procedure is based on the Census Bureau X-13ARIMA-SEATS Release Version 1.1.
ERROR: Invalid values : INTERVAL=WEEK1. .

 

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

1 ACCEPTED SOLUTION

Accepted Solutions
TammyJackson
SAS Employee
The Census Bureau X12 method only supports monthly and quarterly data.

View solution in original post

1 REPLY 1
TammyJackson
SAS Employee
The Census Bureau X12 method only supports monthly and quarterly data.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Multiple Linear Regression in SAS

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.

Discussion stats
  • 1 reply
  • 1163 views
  • 0 likes
  • 2 in conversation