<?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: Forecasting was not performed... in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/463130#M3145</link>
    <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that your model has problem in the specification. The daily seasonality is 7, i think that you cannot develop a daily model whitn annual seasonality&lt;/P&gt;</description>
    <pubDate>Thu, 17 May 2018 19:57:52 GMT</pubDate>
    <dc:creator>manuellara</dc:creator>
    <dc:date>2018-05-17T19:57:52Z</dc:date>
    <item>
      <title>Forecasting was not performed...</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/462294#M3127</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running this code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc arima data=prints2;&lt;BR /&gt;identify var=prints(364) scan;&lt;BR /&gt;estimate p=5 q=4;&lt;BR /&gt;forecast lead=60 out=forecastprints id=datenew interval=day;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which used to run fine, and today i'm getting an error. We add a new date each day we run it.&lt;/P&gt;&lt;P&gt;The error says:&amp;nbsp;ERROR: Forecasting was not performed because estimation was not done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas what could've gone wrong?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 15 May 2018 08:18:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/462294#M3127</guid>
      <dc:creator>zjanuske</dc:creator>
      <dc:date>2018-05-15T08:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Forecasting was not performed...</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/463130#M3145</link>
      <description>&lt;P&gt;Hi;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that your model has problem in the specification. The daily seasonality is 7, i think that you cannot develop a daily model whitn annual seasonality&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 19:57:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/463130#M3145</guid>
      <dc:creator>manuellara</dc:creator>
      <dc:date>2018-05-17T19:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Forecasting was not performed...</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/463131#M3146</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When this error occurs, additional information is typically written to the output file generated by PROC ARIMA. &amp;nbsp;If you see the following message&amp;nbsp;in the PROC ARIMA output:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;The estimation algorithm did not converge after 50 iterations.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;then add the MAXITER= option to the ESTIMATE statement and increase the number of iterations from the default of 50 to a larger number, such as 250.&amp;nbsp; For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; estimate p=5 q=4 maxiter=250;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the model failed to converge in&amp;nbsp;fewer than 50 iterations, then you might need to try specifying:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&amp;nbsp;a different estimation method, such as METHOD=ML,&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;different starting values for the model parameter estimates (See &lt;EM&gt;Details&lt;/EM&gt; &amp;gt; &lt;EM&gt;Initial Values&lt;/EM&gt; section of PROC ARIMA doc),&amp;nbsp;or&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;a different model.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If this information does not allow you to correct the error, then please provide&amp;nbsp;any additional&amp;nbsp;messages written to the output file&amp;nbsp;or the "ARIMA Estimation Optimization Summary" table,&amp;nbsp;which should&amp;nbsp;be displayed in the output.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;DW&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 19:58:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecasting-was-not-performed/m-p/463131#M3146</guid>
      <dc:creator>dw_sas</dc:creator>
      <dc:date>2018-05-17T19:58:38Z</dc:date>
    </item>
  </channel>
</rss>

