<?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 Question on forecasting without ETS in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37248#M200</link>
    <description>I have a project where I need to forecast an analysis variable for 12months.  I have plenty of data - 24 months worth structured as a transaction dataset.  However, the problems are:&lt;BR /&gt;
&lt;BR /&gt;
1) I have EM 5.3 desktop version which does not include the Time Series node.  &lt;BR /&gt;
2) I do not have ETS which enables Proc Forecast (or Time Series) to run.  &lt;BR /&gt;
3) I installed the Trend Regression extension node provided by the book "Data Preparation" by Gerhart Svolba but it only looks at two timeperiods at a time and only provides a single value; however I do like using the node for other projects.&lt;BR /&gt;
&lt;BR /&gt;
I do not want to create a separate model to predict a value for each month, ex. "Regression model 1 for month 1" thru "Regression model 12 for month 12".&lt;BR /&gt;
&lt;BR /&gt;
Does anyone have any ideas on how I can do this in EM or with SAS Stat?</description>
    <pubDate>Wed, 27 May 2009 18:38:06 GMT</pubDate>
    <dc:creator>benbald</dc:creator>
    <dc:date>2009-05-27T18:38:06Z</dc:date>
    <item>
      <title>Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37248#M200</link>
      <description>I have a project where I need to forecast an analysis variable for 12months.  I have plenty of data - 24 months worth structured as a transaction dataset.  However, the problems are:&lt;BR /&gt;
&lt;BR /&gt;
1) I have EM 5.3 desktop version which does not include the Time Series node.  &lt;BR /&gt;
2) I do not have ETS which enables Proc Forecast (or Time Series) to run.  &lt;BR /&gt;
3) I installed the Trend Regression extension node provided by the book "Data Preparation" by Gerhart Svolba but it only looks at two timeperiods at a time and only provides a single value; however I do like using the node for other projects.&lt;BR /&gt;
&lt;BR /&gt;
I do not want to create a separate model to predict a value for each month, ex. "Regression model 1 for month 1" thru "Regression model 12 for month 12".&lt;BR /&gt;
&lt;BR /&gt;
Does anyone have any ideas on how I can do this in EM or with SAS Stat?</description>
      <pubDate>Wed, 27 May 2009 18:38:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37248#M200</guid>
      <dc:creator>benbald</dc:creator>
      <dc:date>2009-05-27T18:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37249#M201</link>
      <description>Hi. We don't have any recurrent prediction routines built into Enterprise Miner, so you would be stuck with coding something using the DMINE and STAT procedures, and a lot of data step work.  I really recommend you try to get access to SAS/ETS and use those procedures inside of Enterprise Miner.  If your forecasting works out well then you may want to investigate the Forecast Server product.  Good luck either way!  &lt;BR /&gt;
-Dave</description>
      <pubDate>Thu, 18 Jun 2009 23:48:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37249#M201</guid>
      <dc:creator>David_Duling</dc:creator>
      <dc:date>2009-06-18T23:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37250#M202</link>
      <description>Here's an example of code I used in the EM v5.3 "Code Node" per David's comment.  This works in EM without a separate SAS/ETS product license, but you have to write the code.  FYI...to use ods output effectively in EM, you also need to add a line to your startup code as follows: &lt;BR /&gt;
&lt;BR /&gt;
ODS Path(Prepend) work.templat(update);&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps?&lt;BR /&gt;
Rex&lt;BR /&gt;
&lt;BR /&gt;
/*BEGIN Code Node Example*/&lt;BR /&gt;
&lt;BR /&gt;
libname DelPro '\\pbidelprd042\DM_Inputs\RPruitt\DelinquencyProjection';&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
 ods rtf&lt;BR /&gt;
	file='\\pbidelprd042\DM_Inputs\Rpruitt\DelinquencyProjection\RFA6051-DelinquencyProjection-4Kelly.rtf'&lt;BR /&gt;
	;&lt;BR /&gt;
   ods graphics on;&lt;BR /&gt;
&lt;BR /&gt;
Data DelPro.DelProTarget;&lt;BR /&gt;
	Set DelPro.DelinquencyProjection;&lt;BR /&gt;
	Roll30To4Mo=(RecRollRates30/RecVintDelinq4Mo)*100;&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
Proc Sort&lt;BR /&gt;
	Data=DelPro.DelProTarget&lt;BR /&gt;
	;&lt;BR /&gt;
	By VintageDate;&lt;BR /&gt;
	Run;&lt;BR /&gt;
&lt;BR /&gt;
Proc UCM&lt;BR /&gt;
	Data=DelPro.DelProTarget (where=(VintageDate&amp;gt;='01JAN2008'd))&lt;BR /&gt;
	;&lt;BR /&gt;
	Id VintageDate	Interval=Month;&lt;BR /&gt;
	Model RecVintDelinq4Mo;&lt;BR /&gt;
	irregular;&lt;BR /&gt;
	level;&lt;BR /&gt;
	estimate plot=(residual normal acf);&lt;BR /&gt;
	forecast Lead=9 Plot=(forecasts decomp);&lt;BR /&gt;
	Title4 'RFA6051-Model RecVintDelinq4Mo with Forecast of 12 Months';&lt;BR /&gt;
	run;&lt;BR /&gt;
&lt;BR /&gt;
ods graphics off;    &lt;BR /&gt;
ods rtf close;&lt;BR /&gt;
ods listing;</description>
      <pubDate>Wed, 01 Jul 2009 12:47:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37250#M202</guid>
      <dc:creator>T_Rex</dc:creator>
      <dc:date>2009-07-01T12:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37251#M203</link>
      <description>Thanks T-Rex, I'll give it a try.</description>
      <pubDate>Mon, 06 Jul 2009 20:01:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37251#M203</guid>
      <dc:creator>benbald</dc:creator>
      <dc:date>2009-07-06T20:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37252#M204</link>
      <description>T-Rex, it's been a while since I've been able to get to this.  I've set up the code in both a code node and in a SAS code window in SAS EM 5.3 and the error I'm getting is ERROR: PROC UCM not found.  Is it unavailable in the the desktop version of em?</description>
      <pubDate>Wed, 29 Jul 2009 13:42:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37252#M204</guid>
      <dc:creator>benbald</dc:creator>
      <dc:date>2009-07-29T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Question on forecasting without ETS</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37253#M205</link>
      <description>Hello Benbald - Sorry you're having trouble.  I can run PROC UCM on my client and server installation.  This problem very well could be installation and/or license specific.  Try running the following code from within a "Code Node".  It will send your licensing specifications to the SAS Log.  So, when the Code Node has run select the Results button and access the node's SAS Log.  The ETS module should be available behind the scenes, so it should not show in the log list.  But, the information displayed will be sufficient for submission of a SAS Tech Support online request for assistance if necessary.  It may be possible that you will need to re-install certain components of your E-Miner load.  You may want to try that before submitting a trouble ticket.&lt;BR /&gt;
&lt;BR /&gt;
You may also want to try adding this line of code to your project's Start-Up Code: %include "%nrstr(C:\Program Files\SAS\SAS 9.1\AutoExec.SAS)";&lt;BR /&gt;
&lt;BR /&gt;
However, the preceding may not be necessary, but I've found it to be a good practice to ensure the code initiates properly.&lt;BR /&gt;
&lt;BR /&gt;
/* BEGIN CLIENT - License installations &amp;amp; setinit validation */&lt;BR /&gt;
proc setinit noalias; run;&lt;BR /&gt;
/* END CLIENT - License installations &amp;amp; setinit validation */&lt;BR /&gt;
&lt;BR /&gt;
/* BEGIN SERVER - License installations &amp;amp; setinit validation */&lt;BR /&gt;
signon SAS;&lt;BR /&gt;
rsubmit;&lt;BR /&gt;
	proc setinit noalias; run;&lt;BR /&gt;
endrsubmit;&lt;BR /&gt;
signoff SAS;&lt;BR /&gt;
/* END SERVER - License installations &amp;amp; setinit validation */</description>
      <pubDate>Wed, 29 Jul 2009 17:09:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Question-on-forecasting-without-ETS/m-p/37253#M205</guid>
      <dc:creator>T_Rex</dc:creator>
      <dc:date>2009-07-29T17:09:35Z</dc:date>
    </item>
  </channel>
</rss>

