I am currently having issues with forecasting out future forecasts with differencing in the model with proc varmax. Varmax is identifying the changes in the independent variables (+100 shock) properly when there is no differening in the variables, however in the differenced environment, the first forecasted value is exacty the value of the estimated beta coefficient in the model, and then the rest of the forecasted values are 0.
Is therea way to correctly calcualte & plot future forecasts in a differenced environment with proc varmax?
(example code of what I am attempting to do):
proc varmax data=forecast_dataset plots=ALL;
model retvar = ratevar_shock100 / noint dif=(retvar(1) ratevar_shock100(1));
output lead=24 back=12 out=forecasts;
run;
All values in data set are populated up until last 12 rows 'retvar' has missing values which are to be forecasted.
Thank you for your time and any suggestions.
-Ryan
Ok I'll try posting elsewhere thanks
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.