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

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
  • 1 reply
  • 657 views
  • 0 likes
  • 2 in conversation