<?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 Custom model fails in Forecast Studio in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59490#M270</link>
    <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I am using Forecast Studio 2.1.&lt;BR /&gt;
&lt;BR /&gt;
I created several fully-fitted regression model specs in E-Guide and I am trying to use them alongside the ARIMA and ESM models in Forecast Studio.&lt;BR /&gt;
&lt;BR /&gt;
When I run the project, the ARIMA and ESM models work fine. However, every one of my custom regression models fail. I have no idea why and I don't know where to look.&lt;BR /&gt;
&lt;BR /&gt;
I have used the same dataset to run the Linear Regression wizard in E-Guide and it works fine, so I know the specs I created should work.&lt;BR /&gt;
&lt;BR /&gt;
Could anybody provide ideas on why the custom model fails in Forecast Studio?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
kdp</description>
    <pubDate>Thu, 18 Feb 2010 16:03:55 GMT</pubDate>
    <dc:creator>kdp</dc:creator>
    <dc:date>2010-02-18T16:03:55Z</dc:date>
    <item>
      <title>Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59490#M270</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
I am using Forecast Studio 2.1.&lt;BR /&gt;
&lt;BR /&gt;
I created several fully-fitted regression model specs in E-Guide and I am trying to use them alongside the ARIMA and ESM models in Forecast Studio.&lt;BR /&gt;
&lt;BR /&gt;
When I run the project, the ARIMA and ESM models work fine. However, every one of my custom regression models fail. I have no idea why and I don't know where to look.&lt;BR /&gt;
&lt;BR /&gt;
I have used the same dataset to run the Linear Regression wizard in E-Guide and it works fine, so I know the specs I created should work.&lt;BR /&gt;
&lt;BR /&gt;
Could anybody provide ideas on why the custom model fails in Forecast Studio?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
kdp</description>
      <pubDate>Thu, 18 Feb 2010 16:03:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59490#M270</guid>
      <dc:creator>kdp</dc:creator>
      <dc:date>2010-02-18T16:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59491#M271</link>
      <description>Hello -&lt;BR /&gt;
To view the SAS log that SAS Forecast Studio creates when generating the forecast, select Tools -- Log. This might give you a first idea what is going on. &lt;BR /&gt;
&lt;BR /&gt;
As an idea: if you are using EG to fit regressions models - you are probably running the REG procedure. Note that since this is not a time-domain based procedure it is not supported as a custom model in SAS Forecast Studio. &lt;BR /&gt;
&lt;BR /&gt;
Having said this, there are ways to fit multiple regression models in SAS Forecast Studio. What it does, though, is running an ARIMA model - leaving out all "ARIMA specfic components" like p,d,q and P,D,Q.&lt;BR /&gt;
For example:&lt;BR /&gt;
PROC HPFARIMASPEC&lt;BR /&gt;
	 /* Label: Y =   CONST  + price*/ &lt;BR /&gt;
	MODELREPOSITORY = work.temp&lt;BR /&gt;
	SPECNAME=MULTIPLEREGRESSION1&lt;BR /&gt;
	; &lt;BR /&gt;
                FORECAST TRANSFORM = NONE  ; &lt;BR /&gt;
                 INPUT SYMBOL = price&lt;BR /&gt;
	TRANSFORM = NONE  ;&lt;BR /&gt;
                ESTIMATE &lt;BR /&gt;
	METHOD=CLS &lt;BR /&gt;
	CONVERGE=0.0010 &lt;BR /&gt;
	MAXITER=50 &lt;BR /&gt;
	DELTA=0.0010 &lt;BR /&gt;
	SINGULAR=1.0E-7  ; &lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Hope that helps - you might consider contacting Technical Support of course.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Udo</description>
      <pubDate>Fri, 19 Feb 2010 07:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59491#M271</guid>
      <dc:creator>udo_sas</dc:creator>
      <dc:date>2010-02-19T07:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59492#M272</link>
      <description>Thanks for your suggestions Udo!&lt;BR /&gt;
&lt;BR /&gt;
I followed your example and created the following spec and even this one fails:&lt;BR /&gt;
***************************************&lt;BR /&gt;
Proc HPFARIMASPEC&lt;BR /&gt;
	MODELREPOSITORY = ldp.kdp_rep&lt;BR /&gt;
	SPECNAME=FS_BASEARIMA&lt;BR /&gt;
	SPECLABEL=""&lt;BR /&gt;
	SPECTYPE=ARIMASPEC&lt;BR /&gt;
	SPECSOURCE=FSUI&lt;BR /&gt;
	; &lt;BR /&gt;
&lt;BR /&gt;
	FORECAST SYMBOL = value TRANSFORM = NONE; &lt;BR /&gt;
&lt;BR /&gt;
	INPUT SYMBOL = FS_Arr TRANSFORM = NONE;&lt;BR /&gt;
	INPUT SYMBOL = WH_Arr TRANSFORM = NONE;&lt;BR /&gt;
	INPUT SYMBOL = FSWH_Arr TRANSFORM = NONE;&lt;BR /&gt;
&lt;BR /&gt;
	ESTIMATE &lt;BR /&gt;
		METHOD=CLS &lt;BR /&gt;
		CONVERGE=0.0010 &lt;BR /&gt;
		MAXITER=50 &lt;BR /&gt;
		DELTA=0.0010 &lt;BR /&gt;
		SINGULAR=1.0E-7  ; &lt;BR /&gt;
run;&lt;BR /&gt;
***************************************&lt;BR /&gt;
Note: My dependent variable is called "value" and "FS_Arr", "WH_Arr", and "FSWH_Arr" are three of my independent variables in the dataset.&lt;BR /&gt;
&lt;BR /&gt;
It's hard to know why this model fails as well since there are no errors reported in the log.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
kdp</description>
      <pubDate>Mon, 22 Feb 2010 15:14:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59492#M272</guid>
      <dc:creator>kdp</dc:creator>
      <dc:date>2010-02-22T15:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59493#M273</link>
      <description>Just figured out why it was failing.&lt;BR /&gt;
&lt;BR /&gt;
The "FS_Arr" value had zeroes throughout...taking it out of the spec fixed the problem.&lt;BR /&gt;
&lt;BR /&gt;
However, not sure why this is causing an issue? Shouldn't it just come back with a coefficient of 0?</description>
      <pubDate>Mon, 22 Feb 2010 16:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59493#M273</guid>
      <dc:creator>kdp</dc:creator>
      <dc:date>2010-02-22T16:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59494#M274</link>
      <description>Hello -&lt;BR /&gt;
Frankly speaking I don't know what this is causing the problem. At this stage I would recommend considering to open a track with Technical Support.&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Udo</description>
      <pubDate>Tue, 23 Feb 2010 09:25:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59494#M274</guid>
      <dc:creator>udo_sas</dc:creator>
      <dc:date>2010-02-23T09:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: Custom model fails in Forecast Studio</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59495#M275</link>
      <description>Thanks Udo! Will look into it.&lt;BR /&gt;
kdp</description>
      <pubDate>Tue, 23 Feb 2010 20:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Custom-model-fails-in-Forecast-Studio/m-p/59495#M275</guid>
      <dc:creator>kdp</dc:creator>
      <dc:date>2010-02-23T20:39:52Z</dc:date>
    </item>
  </channel>
</rss>

