Hello, I am new to using ARIMA statistics in SAS. I am using SAS 9.4. I also have access to SAS Enterprise Guide 6.1 I need help reproducing this output. I am not sure what code was used exactly. I am analysing ARIMA models to find the best model for this particular dataset. The data file (lets call it "a") is a list of 70 years and numbers for each year. Ex: year number 1991 51 1992 64 1993 74 1994 41 Here is an example of the part of the code that I have so far: proc arima data = a; identify var=number; estimate p=2 q=1; forecast lead=0 printall; run; This produces an ARMA(2,1) model and various statistics. However, here is the output I would like to replicate: http://puu.sh/pkShA/e3a962fc9f.png http://puu.sh/pkSiP/ce9e377275.png What is the exact code or required steps I would need to replicate these statistics of fit variables exactly as shown here for each particular ARIMA model? I have tried outstat= and outest= but they do not provide all these variables. Thanks in advance for your help.
... View more