<?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: predicton in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63488#M18047</link>
    <description>Hi:&lt;BR /&gt;
  You may want to read the doc on how to choose the right procedure or task for forecasting. This sample program, for example,&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/app/examples/ets/overlay/sas.htm" target="_blank"&gt;http://support.sas.com/rnd/app/examples/ets/overlay/sas.htm&lt;/A&gt;&lt;BR /&gt;
  &lt;BR /&gt;
Compares PROC FORECAST, PROC ARIMA and PROC REG methods of forecasting time series plots.&lt;BR /&gt;
&lt;BR /&gt;
Depending on how the forecasting tasks work in EG, you may find that your "wide" data needs to be rearranged &lt;BR /&gt;
from this: [pre]&lt;BR /&gt;
month 2004 2005 2006 2007 2008 2009&lt;BR /&gt;
APR 94 592 244 [/pre]&lt;BR /&gt;
to this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
sldate   sales&lt;BR /&gt;
apr2004 94&lt;BR /&gt;
apr2005 592&lt;BR /&gt;
apr2006 244&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Instead of one observation composed of multiple sales/year values, you may need to have one observation for every date and sale. You can accomplish this when you read the data or using PROC TRANSPOSE.&lt;BR /&gt;
&lt;BR /&gt;
I recommend starting with the general forecasting concepts that you can find in the documentation or by looking for some user papers on forecasting:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/tsdata_toc.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/tsdata_toc.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/etsug_tsdata_sect021.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/etsug_tsdata_sect021.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi31/109-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/109-31.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi28/009-28.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi28/009-28.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
    <pubDate>Sat, 29 Nov 2008 15:38:19 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2008-11-29T15:38:19Z</dc:date>
    <item>
      <title>predicton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63487#M18046</link>
      <description>hi all,&lt;BR /&gt;
I need some help regarding the forecasting the sales.&lt;BR /&gt;
my working environment is windows2000, sas/base, sas/stat, sas/graph and enterprise guide4.1.&lt;BR /&gt;
&lt;BR /&gt;
my data like this: &lt;BR /&gt;
month	2004  	2005 	2006 	2007 	2008	     2009&lt;BR /&gt;
APR		94      	592		244	&lt;BR /&gt;
MAY 	418	       627	       820	        168	       407	&lt;BR /&gt;
JUN	        916	      1050	      1134   	800	       827	&lt;BR /&gt;
JUL	       1628        1785        1826	       1409	      1402	&lt;BR /&gt;
AUG	        2326       2950	     2661     	2873        3464	&lt;BR /&gt;
SEP	       8684	     8555	     9791	        8147	       7985	&lt;BR /&gt;
OCT	      12919	   12376	    13802	       12681	       10665	&lt;BR /&gt;
NOV	     20760	    17523	   20791	      20372		&lt;BR /&gt;
DEC      30567	   24782	   28980	      28003		&lt;BR /&gt;
	&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
i would like to calculate the predicted sales for the 2008 NOV,DEC and  2009 .&lt;BR /&gt;
&lt;BR /&gt;
could you please recommend the ways to do this.&lt;BR /&gt;
&lt;BR /&gt;
advanced&lt;BR /&gt;
Thanks &amp;amp; Regards,&lt;BR /&gt;
suresh</description>
      <pubDate>Sat, 29 Nov 2008 09:07:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63487#M18046</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-29T09:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: predicton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63488#M18047</link>
      <description>Hi:&lt;BR /&gt;
  You may want to read the doc on how to choose the right procedure or task for forecasting. This sample program, for example,&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/app/examples/ets/overlay/sas.htm" target="_blank"&gt;http://support.sas.com/rnd/app/examples/ets/overlay/sas.htm&lt;/A&gt;&lt;BR /&gt;
  &lt;BR /&gt;
Compares PROC FORECAST, PROC ARIMA and PROC REG methods of forecasting time series plots.&lt;BR /&gt;
&lt;BR /&gt;
Depending on how the forecasting tasks work in EG, you may find that your "wide" data needs to be rearranged &lt;BR /&gt;
from this: [pre]&lt;BR /&gt;
month 2004 2005 2006 2007 2008 2009&lt;BR /&gt;
APR 94 592 244 [/pre]&lt;BR /&gt;
to this:&lt;BR /&gt;
[pre]&lt;BR /&gt;
sldate   sales&lt;BR /&gt;
apr2004 94&lt;BR /&gt;
apr2005 592&lt;BR /&gt;
apr2006 244&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
Instead of one observation composed of multiple sales/year values, you may need to have one observation for every date and sale. You can accomplish this when you read the data or using PROC TRANSPOSE.&lt;BR /&gt;
&lt;BR /&gt;
I recommend starting with the general forecasting concepts that you can find in the documentation or by looking for some user papers on forecasting:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/tsdata_toc.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/tsdata_toc.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/etsug_tsdata_sect021.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/etsug/60372/HTML/default/etsug_tsdata_sect021.htm&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi31/109-31.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi31/109-31.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi28/009-28.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi28/009-28.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Sat, 29 Nov 2008 15:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63488#M18047</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-11-29T15:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: predicton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63489#M18048</link>
      <description>Thanks  a lot for your help.</description>
      <pubDate>Sun, 30 Nov 2008 10:31:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63489#M18048</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-30T10:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: predicton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63490#M18049</link>
      <description>Hi suresh,&lt;BR /&gt;
&lt;BR /&gt;
its better to try on proc Frocast  and the best one is proc regression and use prediction VARIABLE what ever u want and use proc T-test for comparision&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
chandra alapati</description>
      <pubDate>Sun, 30 Nov 2008 11:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63490#M18049</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-30T11:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: predicton</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63491#M18050</link>
      <description>hi,&lt;BR /&gt;
&lt;BR /&gt;
i tried the methods recommended y you.&lt;BR /&gt;
i trailed by taking the values of 2004,2005 and 2006.&lt;BR /&gt;
predicted for the 2007&lt;BR /&gt;
i got the values like this&lt;BR /&gt;
Obs _TYPE_ _LEAD_ mon1 &lt;BR /&gt;
1 FORECAST 1 26035.03 &lt;BR /&gt;
2 FORECAST 2 23988.53 &lt;BR /&gt;
3 FORECAST 3 22599.23 &lt;BR /&gt;
4 FORECAST 4 21690.65 &lt;BR /&gt;
5 FORECAST 5 21133.71 &lt;BR /&gt;
6 FORECAST 6 20833.98 &lt;BR /&gt;
7 FORECAST 7 20722.38 &lt;BR /&gt;
8 FORECAST 8 20748.41 &lt;BR /&gt;
&lt;BR /&gt;
 these values are so far from the 2007 values.&lt;BR /&gt;
&lt;BR /&gt;
Could you please comment or recommend any suggestions to do my task well.&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Sun, 30 Nov 2008 17:39:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/predicton/m-p/63491#M18050</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-30T17:39:27Z</dc:date>
    </item>
  </channel>
</rss>

