Date: Fri, 25 Oct 2002 08:20:09 -0400
Reply-To: Philip Whittall <philip.whittall@UNILEVER.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Philip Whittall <philip.whittall@UNILEVER.COM>
Subject: Re: GPlot Keeps running. Produces no Output file ..
Dear Vatsal,
Do you have a RUN; statement at the end of the PROC ?
It needs one to know that you've finished telling it all it needs
to know to produce the Graph. You can generate several graphs from
each invocation of the PROC with fresh instructions seaparated by
RUN; and a QUIT; to say you've really finished,
Philip
On Thu, 24 Oct 2002 17:55:24 -0400, Bhardwaj,Vatsal <vb@EE.DUKE.EDU> wrote:
>Hi Guys,
>I am a new user of SAS. And am having problem using GPlot, perhaps some of
>you can help. I have included the program which i am using to generate
>plots from the Data. For some reason, i see not error on the .log file and
>procedure Gplot keeps running forever.
>
>Below i have included my .log file. I am running it using SAS 8.2 on a
>Windows XP machine.
>
>Would really appreciate anyhelp.
>
>Thanks a lot!
>
>Regards,
>Vatsal
>
>
>libname datalib 'D:\SAS\Datalib\';
>NOTE: Libref DATALIB was successfully assigned as follows:
> Engine: V8
> Physical Name: D:\SAS\Datalib
>31
>32 * put pointer to input file name here;
>33 filename in1 ('D:\SAS\Sept24_noleak.txt') lrecl=2500;
>34
>35 * output graphics file in PS format ;
>36 filename outfile 'D:\SAS\Output\plots.ps';
>37
>38 goptions device=pscolor gsfname=outfile gsfmode=append;
>39 options ls=90;
>40
>41 data datalib.tmpjul777; retain time 0;
>42
>43 infile in1 delimiter=','; input col1-col342;
>44
>45
>46 time=col1-1343314682; hrs=time/60/24;
>47 time=time/60;
>48 time=time/60;
>49
>50
>51
>52 axis1 color=blue;
>
>NOTE: The infile IN1 is:
> File Name=D:\SAS\Sept24_noleak.txt,
> RECFM=V,LRECL=2500
>
>NOTE: 95033 records were read from the infile IN1.
> The minimum record length was 2109.
> The maximum record length was 2133.
>NOTE: The data set DATALIB.TMPJUL777 has 95033 observations and 344
>variables.
>NOTE: DATA statement used:
> real time 56.60 seconds
> cpu time 48.67 seconds
>
>
>53 proc gplot data=datalib.tmpjul777;
>54 plot (col2-col342)*time /haxis = axis1 vaxis = axis1;
>55 symbol1 c=red i=join l=1 ;
>56 title1 color= blue "SEToolkit Dynamical Parameters";
>
>
>--
>"Work like you don't need money, Love like you have never been hurt ,
>And Dance like no one is watching. "
>
>Homepage
>--------
>www.ee.duke.edu/~vb
>
>Contact
>-------
>Office : 919-401-0299 -Ext 315
>Home : 919-382-1950
|