<?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: Explain on this code. in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317290#M2110</link>
    <description>&lt;P&gt;References are always useful. &amp;nbsp;It looks like your code came from &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/68148/HTML/default/viewer.htm#etsug_arima_examples02.htm" target="_self"&gt;this example in the PROC ARIMA documentation.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In the example, XLOG is the response&amp;nbsp;variable in the data set. So you need to replace XLOG by the name of the variable in your data that contains the time series.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The (1, 12) specifies the lags. In this case, the model has lags of 1 and 12.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Dec 2016 13:37:05 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2016-12-07T13:37:05Z</dc:date>
    <item>
      <title>Explain on this code.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317288#M2108</link>
      <description>&lt;P&gt;Can someone explain to me. what this code is doing?&amp;nbsp;&lt;/P&gt;&lt;P&gt;basically, i want to display the year 2008 and 2010 with the different month sold in the products. My code do not recognise xlog. Please help.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc arima data=temp_orders;&lt;BR /&gt;identify var=xlog(1,12);&lt;BR /&gt;estimate q=(1)(12) noint method=ml;&lt;BR /&gt;forecast id=orderdate interval=month printall out=b;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got this error message :ERROR: Forecasting was not performed because estimation was not done.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2016 13:31:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317288#M2108</guid>
      <dc:creator>Boa</dc:creator>
      <dc:date>2016-12-07T13:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Explain on this code.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317289#M2109</link>
      <description>&lt;P&gt;There is no xlog option for the identify statement in proc arima, see the documentation: &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/68148/HTML/default/viewer.htm#etsug_arima_syntax04.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/68148/HTML/default/viewer.htm#etsug_arima_syntax04.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I suggest you consult the documentation of a certain piece of SAS before applying it.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2016 13:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317289#M2109</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2016-12-07T13:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Explain on this code.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317290#M2110</link>
      <description>&lt;P&gt;References are always useful. &amp;nbsp;It looks like your code came from &lt;A href="http://support.sas.com/documentation/cdl/en/etsug/68148/HTML/default/viewer.htm#etsug_arima_examples02.htm" target="_self"&gt;this example in the PROC ARIMA documentation.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In the example, XLOG is the response&amp;nbsp;variable in the data set. So you need to replace XLOG by the name of the variable in your data that contains the time series.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The (1, 12) specifies the lags. In this case, the model has lags of 1 and 12.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2016 13:37:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317290#M2110</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-12-07T13:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Explain on this code.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317484#M2112</link>
      <description>&lt;PRE&gt;
Yes. Rick is right.
xlog is log(numunits) .
Did you see the code before proc arima ? there is xlog=log(numunits);

Log it is to handle big number and make data more suitable for ARIMA .


&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Dec 2016 03:18:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Explain-on-this-code/m-p/317484#M2112</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-12-08T03:18:42Z</dc:date>
    </item>
  </channel>
</rss>

