BookmarkSubscribeRSS Feed
cw_sas
Calcite | Level 5

I would like to know how to interpret the parameter estimates in PROC ESM when Holt's exponential smoothing method is used.

 

proc esm data=t print=all ;
forecast x /model=linear;
run;

 

The estimate for Trend Weight is always 0.001.

 

 

trend.png 

i applied to various real data sets and the simulated data sets with different parameter settings.

 

 

data t;
a=0.5;
b=0.1;
do t=0 to 100;
x=a+b*t+rannor(123)*0.1;
output;
end;
run;

 

 how can they be converted to the parameters, alpha and gamma, specified in the document?

 

holt.png

 

 thanks.

 

 

1 REPLY 1
cw_sas
Calcite | Level 5

i answer my own question.

Level weight is alpha and Trend weight is gamma.

it just happens that the all data sets i used have constant trends (T(t) = T(t-1)).

the simulation data, of course, have constant trend.

therefore, gamma=0.001 is essentially zero.

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1003 views
  • 0 likes
  • 1 in conversation