From: Greg on 8 Jul 2010 13:41 I can get an html graph on plot of my Actural vales but does not seem to give me a forecast graph which is what I am looking for I am using Enterprise Guide...can anyone give me some insight as to what my notes are telling me and how I could get a forecast graph? 7 ODS _ALL_ CLOSE; 8 ODS PROCTITLE; NOTE: Some of your options or statements may not be supported with the Activex or Java series of devices. Graph defaults for these drivers may be different from other SAS/GRAPH device drivers. For further information, please contact Technical Support. 9 OPTIONS DEV=ACTIVEX; 10 FILENAME EGHTML TEMP; NOTE: Writing HTML(EGHTML) Body file: EGHTML 11 ODS HTML(ID=EGHTML) FILE=EGHTML ENCODING='utf-8' STYLE=EGDefault 11 ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared %20Files/BIClientStyles/EGDefault.css 11 ! ") ATTRIBUTES=("CODEBASE"="http://www2.sas.com/codebase/ graph/v91/sasgraph.exe") NOGTITLE 11 ! NOGFOOTNOTE GPATH=&sasworklocation; 44 PROC SORT 45 DATA=WORK.IMPW(KEEP=Date F2) 46 OUT=WORK.TMP0TempTableInput 47 ; 48 BY Date; 49 RUN; NOTE: There were 178 observations read from the data set WORK.IMPW. NOTE: The data set WORK.TMP0TEMPTABLEINPUT has 178 observations and 2 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds 50 51 PROC EXPAND DATA=WORK.TMP0TempTableInput ERROR: Procedure EXPAND not found.
From: Andrew Karp Sierra Info Services on 8 Jul 2010 14:02 From reading your SASLOG messages, it appears you don't have SAS/ETS as part of your license. PROC EXPAND is in that module. But, PROC EXPAND does not generate statisical forecasts of future values from observed historical time series values. There are a number of other SAS/ETS procedures that do, including PROC FORECAST and PROC ARIMA, which can be accessed via the EG tool. I think your best next step is to check with your SAS administrator about wheher or not the ETS module is part of your licensed "package" from SAS and if not, whether it makes sense to add it. Without ETS you will have very limited options for statisical forecasting using the EG interface. Hope this helps.... Andrew Karp Sierra Information Services http://www.sierrainformation.com On Jul 8, 10:41 am, Greg <sasgrou...(a)gmail.com> wrote: > I can get an html graph on plot of my Actural vales > but does not seem to give me a forecast graph which is what I am > looking for > I am using Enterprise Guide...can anyone give me some insight as > to what my notes are telling me and how I could get a forecast graph? > > 7 ODS _ALL_ CLOSE; > 8 ODS PROCTITLE; > NOTE: Some of your options or statements may not be supported with the > Activex or Java series of devices. Graph defaults for these drivers > may be different from other SAS/GRAPH device drivers. For further > information, please contact Technical Support. > > 9 OPTIONS DEV=ACTIVEX; > 10 FILENAME EGHTML TEMP; > > NOTE: Writing HTML(EGHTML) Body file: EGHTML > > 11 ODS HTML(ID=EGHTML) FILE=EGHTML ENCODING='utf-8' > STYLE=EGDefault > 11 ! STYLESHEET=(URL="file:///C:/Program%20Files/SAS/Shared > %20Files/BIClientStyles/EGDefault.css > 11 ! ") ATTRIBUTES=("CODEBASE"="http://www2.sas.com/codebase/ > graph/v91/sasgraph.exe") NOGTITLE > 11 ! NOGFOOTNOTE GPATH=&sasworklocation; > > 44 PROC SORT > 45 DATA=WORK.IMPW(KEEP=Date F2) > 46 OUT=WORK.TMP0TempTableInput > 47 ; > 48 BY Date; > 49 RUN; > > NOTE: There were 178 observations read from the data set WORK.IMPW. > NOTE: The data set WORK.TMP0TEMPTABLEINPUT has 178 observations and 2 > variables. > NOTE: PROCEDURE SORT used (Total process time): > real time 0.01 seconds > cpu time 0.01 seconds > > 50 > 51 PROC EXPAND DATA=WORK.TMP0TempTableInput > > ERROR: Procedure EXPAND not found.
From: Greg on 8 Jul 2010 14:25 Andrew, Thanks for giving me a response, I recently upgraded our license by adding ETS--- SAS/GRAPH 30DEC2058 SAS/ETS 30JUL2010 SAS/SHARE 14JUL2052 Base SAS shows above that I am good until the end of the month and then we will have a contract good for a year. SAS told me to : Start -> Programs -> SAS -> Renew SAS Software (might be SAS Utilities) Basically you are looking for the button for Renew SAS Software. Once that opens, you just need to browse to your new license file. I did the renewal like stated above and as you can see above it does show me license and I am trying to run test data thru ETS to see if it is working but I find it hard to believe that all I had to do was the above renewal on the license. tho If ETS was not working why would I get the actural values graph?
From: Andrew Karp Sierra Info Services on 8 Jul 2010 15:05 Hi Greg... To be honest with you, I am not sure how forecasting and analysis of time series data are implemted in EG. I think you should contact SAS again to see if they can help address your installation issues. Andrew Karp Sierra Information Services www.SierraInformation.com On Jul 8, 11:25 am, Greg <sasgrou...(a)gmail.com> wrote: > Andrew, > > Thanks for giving me a response, > > I recently upgraded our license by adding ETS--- > SAS/GRAPH 30DEC2058 > SAS/ETS 30JUL2010 > SAS/SHARE 14JUL2052 > > Base SAS shows above that I am good until the end of the month and > then we will have a contract good for a year. > > SAS told me to : > > Start -> Programs -> SAS -> Renew SAS Software (might be SAS > Utilities) > > Basically you are looking for the button for Renew SAS Software. > > Once that opens, you just need to browse to your new license file. > > I did the renewal like stated above and as you can see above it does > show me license > and I am trying to run test data thru ETS to see if it is working but > I find it hard to believe that > all I had to do was the above renewal on the license. > > tho > If ETS was not working why would I get the actural values graph?
From: Greg on 8 Jul 2010 15:17
Thanks again Andrew, They are starting to respond to me again ....I think I finally have one who is going to be able to help me |