<?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: Setup of 13 period data for forecasting in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16857#M3090</link>
    <description>This is great, thanks for this. This helps me find starting or ending dates for each period. But once I have that how can I use this in Enterprise guide forecasting models.&lt;BR /&gt;
&lt;BR /&gt;
The reason I am thinking I cant use the starting or ending date as TimeID is becaz the values like 80,90 I have are cumulative for that period. So the value was added up for each day of that period to come up to 80, 90. It wasn't 80 on that day, in that case would it not be wrong to use the timeid that the intnx procedure gives me.  If what I am thinking is correct that what aletrantive do I have tos et this up in enterprise guide preferably using the interface.&lt;BR /&gt;
&lt;BR /&gt;
Faisal</description>
    <pubDate>Fri, 07 May 2010 15:49:10 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2010-05-07T15:49:10Z</dc:date>
    <item>
      <title>Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16855#M3088</link>
      <description>Hi all,&lt;BR /&gt;
I am beginner user and need some help with sas enterprise guide for setting up a forecasting model.&lt;BR /&gt;
&lt;BR /&gt;
In the simplest form my data has two fields one is called periods and lists periods as P1, P2 .... P13 ( 13 period year) and other field has values like 80 , 90 and so on. SInce I dont have a time ID when I do forecasting SAS suggest to create a new timeID but the problem is that I dont have an option to choose the interval that matches 13 periods everything exists in days, weeks months, quarters etc. HOw do I set this up.&lt;BR /&gt;
&lt;BR /&gt;
I can possibly find out in a third field in the original table the number of days in each period but thats it, having this infomration alone can this problem be setup to do forecasting? Thanks very much in advance</description>
      <pubDate>Thu, 06 May 2010 03:47:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16855#M3088</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-05-06T03:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16856#M3089</link>
      <description>Using the character variable you do have PERIOD, assign an arbitrary SAS DATE variable, using the INTNX function supplying the numeric portion of your PERIOD value as the third argument - choose a starting date, possibly at the beginning of the current year:  Some sample code is provided below, for illustration.&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
format StartDate yymmdd10.;&lt;BR /&gt;
StartDate = INTNX('year',today(),0);&lt;BR /&gt;
PdArg3 = Input( Substr('P2',2) , 2.);  /* create INTNX third arg to increment date */&lt;BR /&gt;
Attrib SamplePdStartDate format=yymm7. label='Time ID DATE var';&lt;BR /&gt;
SamplePdStartDate = INTNX('month',StartDate,PdArg3);&lt;BR /&gt;
putlog _all_;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Suggested Google advanced search argument, this topic/post:&lt;BR /&gt;
&lt;BR /&gt;
+"enterprise guide" +"time id" +date +forecasting  site:sas.com</description>
      <pubDate>Fri, 07 May 2010 02:20:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16856#M3089</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-05-07T02:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16857#M3090</link>
      <description>This is great, thanks for this. This helps me find starting or ending dates for each period. But once I have that how can I use this in Enterprise guide forecasting models.&lt;BR /&gt;
&lt;BR /&gt;
The reason I am thinking I cant use the starting or ending date as TimeID is becaz the values like 80,90 I have are cumulative for that period. So the value was added up for each day of that period to come up to 80, 90. It wasn't 80 on that day, in that case would it not be wrong to use the timeid that the intnx procedure gives me.  If what I am thinking is correct that what aletrantive do I have tos et this up in enterprise guide preferably using the interface.&lt;BR /&gt;
&lt;BR /&gt;
Faisal</description>
      <pubDate>Fri, 07 May 2010 15:49:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16857#M3090</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2010-05-07T15:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16858#M3091</link>
      <description>Sounds like you have an input-data requirement that cannot be satisfied with the summarized data you have today.  I misunderstood and thought that you only needed a numeric variable representing a SAS DATE within each of the 13 periods.&lt;BR /&gt;
&lt;BR /&gt;
You're in a pickle, my friend.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Fri, 07 May 2010 18:13:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16858#M3091</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-05-07T18:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16859#M3092</link>
      <description>My knowledge of the forecasting stuff is very limited, but what little exposure I've had to it is that time series analysis requires the starting data to be in really good shape. The good news is that Enterprise Guide does have a lot of great tools for manipulating data... I just don't know what specifically would need to be done with your data for forecasting purposes. I rarely recommend cross-posting, but you might ask this question on the forecasting forum if you don't get any additional responses here. If you cross-post, it may help to mention that you're using PROC FORECAST (that's the procedure behind Basic Forecasting... assuming that's the task you want in EG).&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/forum.jspa?forumID=28" target="_blank"&gt;http://support.sas.com/forums/forum.jspa?forumID=28&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
You can also check with tech support, I'm sure they'll be able to get you what you need very quickly. As a reminder, unlimited free tech support comes with every SAS license.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/contact/" target="_blank"&gt;http://support.sas.com/techsup/contact/&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Wish I could be more help.</description>
      <pubDate>Fri, 07 May 2010 19:54:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16859#M3092</guid>
      <dc:creator>RichardH_sas</dc:creator>
      <dc:date>2010-05-07T19:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Setup of 13 period data for forecasting</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16860#M3093</link>
      <description>I think Faisal wants custom intervals, specifically WEEK4. But 13x28=364, so he has to specify how the one or two additional days are to be handled, and how the intervals align with year boundaries.</description>
      <pubDate>Tue, 18 May 2010 22:26:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Setup-of-13-period-data-for-forecasting/m-p/16860#M3093</guid>
      <dc:creator>Howles</dc:creator>
      <dc:date>2010-05-18T22:26:29Z</dc:date>
    </item>
  </channel>
</rss>

