<?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 no ar coefficient for Yw method in proc autoreg? in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/no-ar-coefficient-for-Yw-method-in-proc-autoreg/m-p/652286#M3848</link>
    <description>&lt;P&gt;When I use the uls method in proc autoreg to get an ar&amp;nbsp; term I get a nice ar coefficient and all the other independent variables get new coefficients.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc autoreg data=actuals2 plots; model value = variable1 variable2&amp;nbsp; /method=uls nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I use yw metod I don't get updated coefficients for the other idependent variables nor do I get an AR coefficient.&amp;nbsp; Why is that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc autoreg data=actuals2 plots; model value = variable1 variable2&amp;nbsp; /method=YW nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Jun 2020 15:54:18 GMT</pubDate>
    <dc:creator>ubshams</dc:creator>
    <dc:date>2020-06-01T15:54:18Z</dc:date>
    <item>
      <title>no ar coefficient for Yw method in proc autoreg?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/no-ar-coefficient-for-Yw-method-in-proc-autoreg/m-p/652286#M3848</link>
      <description>&lt;P&gt;When I use the uls method in proc autoreg to get an ar&amp;nbsp; term I get a nice ar coefficient and all the other independent variables get new coefficients.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc autoreg data=actuals2 plots; model value = variable1 variable2&amp;nbsp; /method=uls nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I use yw metod I don't get updated coefficients for the other idependent variables nor do I get an AR coefficient.&amp;nbsp; Why is that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc autoreg data=actuals2 plots; model value = variable1 variable2&amp;nbsp; /method=YW nlag=1 stationarity = (adf=3)dw=4 dwprob Godfrey=4 archtest; run;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 15:54:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/no-ar-coefficient-for-Yw-method-in-proc-autoreg/m-p/652286#M3848</guid>
      <dc:creator>ubshams</dc:creator>
      <dc:date>2020-06-01T15:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: no ar coefficient for Yw method in proc autoreg?</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/no-ar-coefficient-for-Yw-method-in-proc-autoreg/m-p/652371#M3850</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/185449"&gt;@ubshams&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default Yule-Walker method is a two-step estimator, where the AR coefficient(s) are estimated from the OLS residuals.&amp;nbsp; These coefficients are used to compute&amp;nbsp;&lt;FONT face="symbol"&gt;S&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif"&gt;, which is then used in a subsequent GLS estimation to obtain the final Yule-Walker parameter estimates.&amp;nbsp; In the output generated by PROC AUTOREG when the METHOD=YW option is specified, you should see a table called "Estimates of Autoregressive Parameters".&amp;nbsp; This table is displayed at the end of the OLS estimation results and before the "Yule-Walker Estimates" table of fit statistics.&amp;nbsp; The updated coefficients for the independent variables in your model are in the final "Parameter Estimates" table near the end of the output.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;For more information on the computational details for the YW method, please see the following section of the documentation:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_autoreg_details02.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#etsug_autoreg003659" target="_self"&gt;https://go.documentation.sas.com/?docsetId=etsug&amp;amp;docsetTarget=etsug_autoreg_details02.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#etsug_autoreg003659&lt;/A&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;I hope this helps!&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;DW&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 21:11:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/no-ar-coefficient-for-Yw-method-in-proc-autoreg/m-p/652371#M3850</guid>
      <dc:creator>dw_sas</dc:creator>
      <dc:date>2020-06-01T21:11:33Z</dc:date>
    </item>
  </channel>
</rss>

