<?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: ARCH model with YW method - no rho output in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907723#M4763</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Hello,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Thank you for your reply and clarification.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Sincerely,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2023 10:26:32 GMT</pubDate>
    <dc:creator>j_elisio</dc:creator>
    <dc:date>2023-12-13T10:26:32Z</dc:date>
    <item>
      <title>ARCH model with YW method - no rho output</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/906889#M4759</link>
      <description>&lt;P&gt;Good evening,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm estimating a model with an autoregressive error by the Yule-Walker method using the AUTOREG procedure. In the final output (2nd regression step), SAS does not present the final parameters (rho) for each of the autoregressive terms (in my case, ar1, ar2, ar12) and corresponding standard errors. Why is SAS not showing this information in the final output?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2023 23:04:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/906889#M4759</guid>
      <dc:creator>j_elisio</dc:creator>
      <dc:date>2023-12-07T23:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: ARCH model with YW method - no rho output</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907436#M4760</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you having&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ODS SELECT NONE; or&lt;/LI&gt;
&lt;LI&gt;ODS EXCLUDE ALL;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;statement (in front of PROC AUTOREG)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The parameter estimates are in an output object with one of these names:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;ARParameterEstimates&lt;/LI&gt;
&lt;LI&gt;ParameterEstimates&lt;/LI&gt;
&lt;LI&gt;ParameterEstimatesGivenAR&lt;/LI&gt;
&lt;LI&gt;ParameterEstimatesSCBP&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;You can use&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS TRACE ON;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;statement before your PROC AUTOREG to see the name of the output objects in the LOG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post your code to help us help you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 22:37:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907436#M4760</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-12-11T22:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: ARCH model with YW method - no rho output</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907618#M4761</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/332935"&gt;@j_elisio&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For Yule Walker estimation, the AR parameters are estimated from sample autocorrelation functions of first step OLS residuals using Yule Walker equations. They are not estimated in the final step using GLS. The GLS step only obtain regression estimates 'beta'. So the AR parameters are only printed out in the first step of OLS results, but not in the final step parameter estimates table. The following Details section discusses Yule Walker estimation method:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_045/etsug/etsug_autoreg_details02.htm#etsug_autoreg003664" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_045/etsug/etsug_autoreg_details02.htm#etsug_autoreg003664&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following section, specifically in item #9, discusses output layout for different estimation methods , including METHOD = YW,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/v_045/etsug/etsug_autoreg_details57.htm" target="_blank"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/v_045/etsug/etsug_autoreg_details57.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;9. If the NLAG= option is specified with METHOD=ULS or METHOD=ML, the regression parameter estimates are printed again, assuming that the autoregressive parameter estimates are known. In this case, the Standard Error and related statistics for the regression estimates will, in general, be different from the case when they are estimated. Note that from a standpoint of estimation, Yule-Walker and iterated Yule-Walker methods (NLAG= with METHOD=YW, ITYW) generate only one table, assuming AR parameters are given.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 17:19:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907618#M4761</guid>
      <dc:creator>SASCom1</dc:creator>
      <dc:date>2023-12-12T17:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: ARCH model with YW method - no rho output</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907722#M4762</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Hello Koen,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Thank you for your reply.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;I was expecting the initial AR estimates to change over the iteration process of the autoreg. It seems it is not the case. Nonetheless, I have the AR coefficients in the corresponding output table as you mentioned. Thank you once again.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 10:25:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907722#M4762</guid>
      <dc:creator>j_elisio</dc:creator>
      <dc:date>2023-12-13T10:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: ARCH model with YW method - no rho output</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907723#M4763</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Hello,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Thank you for your reply and clarification.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Sincerely,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 10:26:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/ARCH-model-with-YW-method-no-rho-output/m-p/907723#M4763</guid>
      <dc:creator>j_elisio</dc:creator>
      <dc:date>2023-12-13T10:26:32Z</dc:date>
    </item>
  </channel>
</rss>

