<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(sea in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544047#M3486</link>
    <description>The model (0,1,1)(0,1,1)12 NOINT is the well-known Airline model popularized by Box and Jenkins for monthly seasonal series.  Here the series is differenced twice, (1-B)(1-B^12)Y -- non-seasonal and seasonal differencing, and the differenced series is modeled as an ARMA(0,1)(0,1)12.  Please see PROC ARIMA doc for additional help and examples ( &lt;A href="https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_toc.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_toc.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt; ).</description>
    <pubDate>Mon, 18 Mar 2019 17:21:28 GMT</pubDate>
    <dc:creator>rselukar</dc:creator>
    <dc:date>2019-03-18T17:21:28Z</dc:date>
    <item>
      <title>how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(season)</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/543732#M3483</link>
      <description>&lt;P&gt;hi, I am trying to check arima(2,1,1) model for a given data set. is my programming below correct？ i'm quite new to SAS but i cannot seem to tell difference between arima model and arma model here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data mortg;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;infile "Documents\My SAS Files\m-mortg.txt" firstobs=1;&lt;/DIV&gt;&lt;DIV&gt;input year month day rate;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;lrate=log(rate);&lt;/DIV&gt;&lt;DIV&gt;label lrate="log mortgage rate";&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;proc arima data=mortg plots=all;&lt;/DIV&gt;&lt;DIV&gt;identify var=lrate;&lt;/DIV&gt;&lt;DIV&gt;estimate p=2 q=1 noconstant method=cls;&lt;/DIV&gt;&lt;DIV&gt;forecast out=b lead=4 alpha=0.05 noprint;&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;</description>
      <pubDate>Sat, 16 Mar 2019 14:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/543732#M3483</guid>
      <dc:creator>lina1583</dc:creator>
      <dc:date>2019-03-16T14:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(sea</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544011#M3484</link>
      <description>&lt;P&gt;You are almost there.&amp;nbsp; Providing some model specification examples:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc arima data=sashelp.air plots=none;&lt;BR /&gt;/* ARIMA(2, 1, 1) NOINT */&lt;BR /&gt;identify var=air(1) noprint; /* specify d=1 */&lt;BR /&gt;estimate p=2 q=1 noconstant method=cls;&lt;BR /&gt;run;&lt;BR /&gt;/* ARIMA(0, 0, 1)(1, 0, 1)12 */&lt;BR /&gt;identify var=air noprint; /* no differencing */&lt;BR /&gt;estimate p=(12) q=(1)(12) method=cls;&lt;BR /&gt;run;&lt;BR /&gt;/* ARIMA(0, 1, 1)(0, 1, 1)12 NOINT */&lt;BR /&gt;identify var=air(1, 12) noprint; /* differencing orders 1, 12 */&lt;BR /&gt;estimate q=(1)(12) NOINT method=cls;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 15:25:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544011#M3484</guid>
      <dc:creator>rselukar</dc:creator>
      <dc:date>2019-03-18T15:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(sea</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544022#M3485</link>
      <description>&lt;P&gt;many thanks Rselukar! that really helps. can I further ask what it means by differencing order 1 and 12? is it supposed to remove the seasonal effect? or should it be using var=air(0,12) to remove the seasonal effect? thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 15:44:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544022#M3485</guid>
      <dc:creator>lina1583</dc:creator>
      <dc:date>2019-03-18T15:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(sea</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544047#M3486</link>
      <description>The model (0,1,1)(0,1,1)12 NOINT is the well-known Airline model popularized by Box and Jenkins for monthly seasonal series.  Here the series is differenced twice, (1-B)(1-B^12)Y -- non-seasonal and seasonal differencing, and the differenced series is modeled as an ARMA(0,1)(0,1)12.  Please see PROC ARIMA doc for additional help and examples ( &lt;A href="https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_toc.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en" target="_blank"&gt;https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_arima_toc.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en&lt;/A&gt; ).</description>
      <pubDate>Mon, 18 Mar 2019 17:21:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544047#M3486</guid>
      <dc:creator>rselukar</dc:creator>
      <dc:date>2019-03-18T17:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: how do I test arima(2,1,1) model and how to check arima modeal (0,0,1)(1,0,1) with period 12(sea</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544158#M3487</link>
      <description>&lt;P&gt;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?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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?&lt;/P&gt;&lt;P&gt;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?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;data crsp;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;infile "My SAS Files\m-dec1-8006.txt" firstobs=1;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;input Date Dec1;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;proc arima data=crsp plots=all;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;identify var=Dec1;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;estimate p=(12) q=(1)(12) method=cls;&lt;/EM&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;EM&gt;run;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2019 06:28:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/how-do-I-test-arima-2-1-1-model-and-how-to-check-arima-modeal-0/m-p/544158#M3487</guid>
      <dc:creator>lina1583</dc:creator>
      <dc:date>2019-03-19T06:28:21Z</dc:date>
    </item>
  </channel>
</rss>

