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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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