Date: Wed, 10 Oct 2007 10:54:16 +0530
Reply-To: Surajit Das <surajit.das@DECIDYN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Surajit Das <surajit.das@DECIDYN.COM>
Subject: Re: PROC GPLOT not executing in MACRO Function
In-Reply-To: <6eca73440710091837s63a16f81g216e09a9b35d9cc9@mail.gmail.com>
Content-Type: text/plain; charset="US-ASCII"
Try deleting the graph catalogue where the graphs are stored before each
call of proc gplot.
Something like this
PROC GREPLAY NOFS IGOUT=<Your Graph Catalogue name>;
DELETE _ALL_;
RUN;
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of OR
Stats
Sent: Wednesday, October 10, 2007 7:07 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: PROC GPLOT not executing in MACRO Function
Hello All: Within my macro function, I would like to call on PROC GPLOT
several times. Unfortunately, even at only one iteration, it does not print
out a graph. When I check my log, it only says the the # of observations
used in PROC GPLOT w. no graph in sight... When I run PROC GPLOT again and
by itself, it does just fine. Should it be prefaced by some syntax when it
sits in a macro function? Merci.
|