hi, can I check why is it NOINT in the airline case? as in based on what information, we decide to omit the mean value? I have the attached data and I can want to check ARIMA(0,0,1)(1,0,1) with period 12. is my code below correct? should I also use NOINT here? I can see the Dec1 is already stationary, so I guess I don't need to use Dec1(0,12) because the seasonality is modeled in p and q in the estimate? data crsp; infile "My SAS Files\m-dec1-8006.txt" firstobs=1; input Date Dec1; proc arima data=crsp plots=all; identify var=Dec1; estimate p=(12) q=(1)(12) method=cls; run;
... View more