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

Hi Guys

 

I set up a custom model (multiple linear regression model) in SAS Forecast Studio to get some coefficients for a few independent variables. Just trying to understand how SAS compute the forecast values becuase I did not put in any leading values for any independent variables. What is the equation used for this model?

 

Below is the code I copied from studio for the model of created, and also the prameter estimates in the attached file.

 

Thanks in advance.

 

Proc HPFARIMASPEC
/* Generated at: May 24, 2016 1:57:37 PM
* Model: MULTIREG
* Label: Y = CONST + Heating_Degree_Days ... + JUNE2012
*/
MODELREPOSITORY = work.temp
SPECNAME=MULTIPLEREGRESSION1
SPECLABEL=""
SPECTYPE=MULTIREG
SPECSOURCE=FSUI
;
FORECAST SYMBOL = Y TRANSFORM = NONE ;
INPUT SYMBOL = Heating_Degree_Days
TRANSFORM = NONE ;
INPUT SYMBOL = Cooling_Degree_Days
TRANSFORM = NONE ;
INPUT SYMBOL = PV_Cap_Log
TRANSFORM = NONE ;
INPUT SYMBOL = Max_of_Max_Temp
TRANSFORM = NONE ;
INPUT SYMBOL = SEASON
TRANSFORM = NONE ;
INPUT SYMBOL = Average_of_Avg_Humid
TRANSFORM = NONE ;
INPUT EVENT = JUNE2011
TRANSFORM = NONE ;
INPUT EVENT = JUNE2012
TRANSFORM = NONE ;
ESTIMATE
METHOD=CLS
CONVERGE=0.001
MAXITER=50
DELTA=0.001
SINGULAR=1.0E-7 ;
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
udo_sas
SAS Employee

Hello -

If future values of independent variables are not included in the input data set, then the system will forecast those independent values using ESM. See STOCHASTIC statement of the HPFENGINE procedure for more information. SAS Forecast Studio will use future values of independent variables if they are included in the input data set.

Thanks,

Udo

View solution in original post

2 REPLIES 2
udo_sas
SAS Employee

Hello -

If future values of independent variables are not included in the input data set, then the system will forecast those independent values using ESM. See STOCHASTIC statement of the HPFENGINE procedure for more information. SAS Forecast Studio will use future values of independent variables if they are included in the input data set.

Thanks,

Udo

ridiculas
Fluorite | Level 6

Thanks udo. That answered by question.

 

I will check STOCHASTIC to find more info.

 

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
  • 2 replies
  • 1581 views
  • 1 like
  • 2 in conversation