BookmarkSubscribeRSS Feed
Jack_Smitherson
Fluorite | Level 6

Hi everyone, 

 

Proc logistic has a "unit" statement option, to attain an estimate on the association of interest by certain increments.

 

Can the same be done using proc arima? For example: 

 

proc arima data=data;
identify var=&ylist crosscorr=(&xlist);
estimate input=(&xlist) p=1 method=ml plot;
run;
forecast printall;
run;

quit;

 

Note: &xlist = continuous exposure/independent variable. 

1 REPLY 1
rselukar
SAS Employee

There is no "UNIT" statement in ARIMA.  I suspect you want to find how the response variable changes as the values of some input variable change.  Kind of scoring or what-if analysis.  In ARIMA there is no simple way to do it.  You could manually provide the desired input variable values in the forecast region (in the input data set) and reforecast. 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 792 views
  • 0 likes
  • 2 in conversation