Hello SAS Community, I am using the TRAMO/SEATS component of the SAS ETS X13 procedure to attempt to extract the long term trend from a time series. However, SAS combines the trend and cycle together in the output. In getting the trend-cycle, both the trend and cycle would have to be extracted through SEATS but these separate series are not provided in the output. Is there an undocumented option to get this output, or some way to access the working sets prior to the output to grab these series? It's my first time posting so forgive me if I forget standards, I'm happy to answer any follow up questions if it helps you answer my question. If it helps, here is my code so far: proc x13 data=data date=date interval=qtr ;
var series;
transform function=auto;
automdl maxdiff=(1,1) maxorder=(4,1);
outlier;
seatsdecomp out=output;
run; Thanks, Sean
... View more