When I use the uls method in proc autoreg to get an ar term I get a nice ar coefficient and all the other independent variables get new coefficients.
proc autoreg data=actuals2 plots; model value = variable1 variable2 /method=uls nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;
But when I use yw metod I don't get updated coefficients for the other idependent variables nor do I get an AR coefficient. Why is that?
proc autoreg data=actuals2 plots; model value = variable1 variable2 /method=YW nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;
Thanks in advance.