Hi,
I want to find the autocorrelation of a time series variable for different orders (e.g., AC(1), AC(5), AC(20)), so I use the following code:
proc arima data=mydata plot(only)=(series(corr)) ; identify var=tsvar nlag=20; run;
I have two questions regarding the following table in the output:
1. How could I determine the order of autocorrelation, so instead of 6,12, etc, it'll give me the result for 1,5, etc.
2. Under Autocorrelations, there are six columns. SAS manual says "The autocorrelations are checked in groups of six". what does it mean in groups of six?
Thanks,
... View more