<?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 ARIMA transfer function compound effect in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARIMA-transfer-function-compound-effect/m-p/480333#M3230</link>
    <description>&lt;P&gt;Hello, I would l would like to know how one could specify the following compounded transfer function. This gives a compounded effect of abrupt spike and decay and settles in a new mean.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arima_transfer_eq.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21919i34DEED4DA6F49FC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="arima_transfer_eq.PNG" alt="arima_transfer_eq.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can be visualized as follows. I can easily code the first part of the equation, the question is how to compound both with same intervention variable. Thanks in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arima_transfer.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21920iFD970395DBF3F74F/image-size/large?v=v2&amp;amp;px=999" role="button" title="arima_transfer.PNG" alt="arima_transfer.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jul 2018 02:48:06 GMT</pubDate>
    <dc:creator>Forecaster</dc:creator>
    <dc:date>2018-07-23T02:48:06Z</dc:date>
    <item>
      <title>ARIMA transfer function compound effect</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARIMA-transfer-function-compound-effect/m-p/480333#M3230</link>
      <description>&lt;P&gt;Hello, I would l would like to know how one could specify the following compounded transfer function. This gives a compounded effect of abrupt spike and decay and settles in a new mean.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arima_transfer_eq.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21919i34DEED4DA6F49FC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="arima_transfer_eq.PNG" alt="arima_transfer_eq.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can be visualized as follows. I can easily code the first part of the equation, the question is how to compound both with same intervention variable. Thanks in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arima_transfer.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21920iFD970395DBF3F74F/image-size/large?v=v2&amp;amp;px=999" role="button" title="arima_transfer.PNG" alt="arima_transfer.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 02:48:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARIMA-transfer-function-compound-effect/m-p/480333#M3230</guid>
      <dc:creator>Forecaster</dc:creator>
      <dc:date>2018-07-23T02:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: ARIMA transfer function compound effect</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARIMA-transfer-function-compound-effect/m-p/480587#M3231</link>
      <description>&lt;P&gt;This is a good question. &amp;nbsp;If your second transfer function spec did not have a denominator polynomial with unit root, you could have easily specified this model by including an extra copy of your I variable, say copy_I, in your input data set.&amp;nbsp; As it happens, the denominator polynomials in ARIMA cannot be "unstable".&amp;nbsp; One way to get around this and specify a model that is reasonably close to your model is as follows (this still involves making a copy of the I variable):&lt;/P&gt;
&lt;P&gt;Note that after multiplying your model equation by (1-B), one gets the following:&lt;/P&gt;
&lt;P&gt;(1-B) y_t = (omega_01/(1-delta B)) (1-B) X_t + omega_02 X_t + (1-B) N_t.&lt;/P&gt;
&lt;P&gt;I have renamed your I variable as X.&amp;nbsp; For simplicity, let us assume that your noise process N_t is a simple white noise.&amp;nbsp; Then (1-B) N_t is an MA(1) process with MA parameter equal to 1 (which is noninvertible).&amp;nbsp; In ARIMA you can specify a model close to this rearranged model where the noise is invertible MA(1).&amp;nbsp; You could do this as follows:&lt;/P&gt;
&lt;P&gt;Suppose your input data set is TEST.&lt;/P&gt;
&lt;P&gt;Step1.&amp;nbsp; Create a copy of variable X:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; data test;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; set test;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; copy_X = X;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Step 2: Specify the model:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;proc arima data=test;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; i var=y(1) crosscorr=(X copy_X(1)) noprint;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; e q=1 input=(/(1) copy_X X) noint method=ml;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will give you a specification reasonably close to what you want.&amp;nbsp; If in fact, the true noise process is non-invertible MA(1), your estimated MA parameter will be close to it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this works OK for you.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jul 2018 18:49:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARIMA-transfer-function-compound-effect/m-p/480587#M3231</guid>
      <dc:creator>rselukar</dc:creator>
      <dc:date>2018-07-23T18:49:55Z</dc:date>
    </item>
  </channel>
</rss>

