BookmarkSubscribeRSS Feed
TryingwithSAS
Fluorite | Level 6

Hi, I had to difference my dependent variable to get white noise autocorrelation. Below is my code. How do I get the mathematical form of my ARIMA model? I got several MLEs but when I multiply them by the variable values, I don't get the forecasted values. I need an equation: dependent var = mu + coefficien1*X1 + coefficient2* x2 + coefficient3*x3

No clue how to do this with a differenced response variable.

PLEASE HELP?
TXX

TITLE 'REGRESSION ANALYSIS 8'; run;
PROC ARIMA DATA = SAHT.XCOMBINED3 ;
IDENTIFY VAR = DEPENDENTVAR (1) CROSSCOR = (
X1 X2 X3  );
ESTIMATE P = (1 6) METHOD = ML INPUT = (
X1 X2 X3 ) PLOT;
FORECAST ID = TIME INTERVAL = WEEK PRINTALL OUT = SAHT.XOUT;
RUN;
QUIT;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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