BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
J111
Quartz | Level 8

How can we convert this R code into SAS ETS ?

We have run this code on sashelp.air file - see results attached

-------------------------------------------------------------------------- The code -----------------------------------------------------------

#change the path

df<- read.csv("\download\AIR.csv") 

lambda=26000

HP_FILTER_AIR= hpfilter(df$AIR,type=c("lambda"),drift=FALSE,freq=lambda)

df$cycle <- HP_FILTER_AIR$cycle

df$trend <- HP_FILTER_AIR$trend

---------------------------------------------------------------------------------------------------------------------------------------------------

 

Many thanks

1 ACCEPTED SOLUTION
3 REPLIES 3
Ksharp
Super User

Calling @Rick_SAS

Check PROC TIMESERIES and its options:

OUTTREND= OUTSEASON=

P.S. check the examples in documentation,

 

 

Check PROC UCM

And I quote:

The UCMs are also called structural models in the time series literature. A
UCM decomposes the response series into components such as trend, seasonals, cycles, and the regression
effects due to predictor series.

 

 

J111
Quartz | Level 8

Thanks a lot - this code gives the wanted results !

proc expand data=sashelp.air out=fexp method=none ;
id date;
Convert air=hpt/transformout=(hp_t 26000) ;
Convert air=hpc/transformout=(hp_c 26000) ;
run ;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Discussion stats
  • 3 replies
  • 5210 views
  • 2 likes
  • 3 in conversation