Hi,
is there any proc statement in SAS that enables to use STL (like in R).
I found a source code for STL function in R but unfortunately I am not able to implement this solution in SAS.
Here are links to the source code
https://svn.r-project.org/R/trunk/src/library/stats/R/stl.R
and the article
https://www.wessa.net/download/stl.pdf
Thank you in advance for your help
I am not familiar with STL, but of course SAS does have PROC LOESS that might be able to do this.
PROC ARIMA can fit seasonal time series, see https://documentation.sas.com/?docsetId=etsug&docsetVersion=14.2&docsetTarget=etsug_arima_examples02...
As far as I can tell, PROC LOESS by itself might not give you the decomposition you want (it could be used recursively to within the overall algorithm). PROC ARIMA also is not directly useful for this. You can use PROC UCM (both ARIMA and UCM are in SAS/ETS) to get such a decomposition. See the getting started example in the UCM doc: https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_ucm_gettingstarted01.htm&docsetV...
Also see:
https://support.sas.com/resources/papers/proceedings09/306-2009.pdf for general info on UCM modeling.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.