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.