<?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: Regarding Forecasting in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54716#M255</link>
    <description>Hello,&lt;BR /&gt;
Please excuse for missing the point. You will find lots of information about how missing values are treated in Online Help. I'm copying some relevant sections for your convenience.&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Udo&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; 1. is it necessary to set missing zero?&lt;BR /&gt;
From Online Help: "Sometimes missing values should be interpreted as unknown values. The forecasting models used by the HPF procedure can effectively handle missing values. But sometimes missing values are known (such as when missing values are created from accumulation), and no observations should be interpreted as no (zero) value. In the former case, the SETMISSING= option can be used to interpret how missing values are treated. The SETMISSING=0 option should be used when missing observations are to be treated as no (zero) values. In other cases, missing values should be interpreted as global values, such as minimum or maximum values of the accumulated series. The accumulated and interpreted time series is used in subsequent analyses."&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; 2.if we set missing as blank then it provide the different answer as compared to&lt;BR /&gt;
&amp;gt; set missing as zero.&lt;BR /&gt;
From Online Help:  The treatment of missing values varies with the forecasting model. For the smoothing models, missing values after the start of the series are replaced with one-step-ahead predicted values, and the predicted values are applied to the smoothing equations.</description>
    <pubDate>Mon, 20 Jul 2009 07:10:21 GMT</pubDate>
    <dc:creator>udo_sas</dc:creator>
    <dc:date>2009-07-20T07:10:21Z</dc:date>
    <item>
      <title>Regarding Forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54713#M252</link>
      <description>Hi,&lt;BR /&gt;
If i an forecasting in SAS HPF,for the following form of data&lt;BR /&gt;
monyy  demand &lt;BR /&gt;
jan01      12&lt;BR /&gt;
mar01     17&lt;BR /&gt;
jun02       19&lt;BR /&gt;
&lt;BR /&gt;
then is it necessary to make it contninous ie jan01,feb01,........,and replace missing values with zero or we put as it is and forecast.</description>
      <pubDate>Wed, 15 Jul 2009 05:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54713#M252</guid>
      <dc:creator>Anil_K</dc:creator>
      <dc:date>2009-07-15T05:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54714#M253</link>
      <description>Hello -&lt;BR /&gt;
You might want to consider to either pre-process your data using PROC TIMESERIES or to use the "accumulate" and "setmissing" options in the HPF procedures.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
data test;&lt;BR /&gt;
input date date7. demand;&lt;BR /&gt;
format date date7.;&lt;BR /&gt;
cards;&lt;BR /&gt;
01JAN09 10&lt;BR /&gt;
01FEB09	12&lt;BR /&gt;
01APR09 12&lt;BR /&gt;
01MAY09 10&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
proc timeseries data=test out=series;&lt;BR /&gt;
id date interval=month accumulate=total setmissing=0;&lt;BR /&gt;
var demand;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
or when using PROC HPF for example:&lt;BR /&gt;
proc hpf data=test ...;&lt;BR /&gt;
id date interval=month accumulate=total setmissing=0;&lt;BR /&gt;
...&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Udo</description>
      <pubDate>Thu, 16 Jul 2009 07:56:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54714#M253</guid>
      <dc:creator>udo_sas</dc:creator>
      <dc:date>2009-07-16T07:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54715#M254</link>
      <description>Hi,&lt;BR /&gt;
thanks for ur reply but my question is little bit different.&lt;BR /&gt;
&lt;BR /&gt;
Suppose when using PROC HPF :&lt;BR /&gt;
proc hpf data=test ...;&lt;BR /&gt;
id date interval=month accumulate=total setmissing=  ;&lt;BR /&gt;
...&lt;BR /&gt;
run;&lt;BR /&gt;
then it also provide the result.So my question is:&lt;BR /&gt;
1. is it necessary to set missing zero?&lt;BR /&gt;
2.if we set missing as blank then it provide the different answer as compared to set missing as zero.</description>
      <pubDate>Fri, 17 Jul 2009 05:03:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54715#M254</guid>
      <dc:creator>Anil_K</dc:creator>
      <dc:date>2009-07-17T05:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54716#M255</link>
      <description>Hello,&lt;BR /&gt;
Please excuse for missing the point. You will find lots of information about how missing values are treated in Online Help. I'm copying some relevant sections for your convenience.&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Udo&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; 1. is it necessary to set missing zero?&lt;BR /&gt;
From Online Help: "Sometimes missing values should be interpreted as unknown values. The forecasting models used by the HPF procedure can effectively handle missing values. But sometimes missing values are known (such as when missing values are created from accumulation), and no observations should be interpreted as no (zero) value. In the former case, the SETMISSING= option can be used to interpret how missing values are treated. The SETMISSING=0 option should be used when missing observations are to be treated as no (zero) values. In other cases, missing values should be interpreted as global values, such as minimum or maximum values of the accumulated series. The accumulated and interpreted time series is used in subsequent analyses."&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt; 2.if we set missing as blank then it provide the different answer as compared to&lt;BR /&gt;
&amp;gt; set missing as zero.&lt;BR /&gt;
From Online Help:  The treatment of missing values varies with the forecasting model. For the smoothing models, missing values after the start of the series are replaced with one-step-ahead predicted values, and the predicted values are applied to the smoothing equations.</description>
      <pubDate>Mon, 20 Jul 2009 07:10:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Regarding-Forecasting/m-p/54716#M255</guid>
      <dc:creator>udo_sas</dc:creator>
      <dc:date>2009-07-20T07:10:21Z</dc:date>
    </item>
  </channel>
</rss>

