Date: Thu, 18 Jan 2007 00:07:02 -0800
Reply-To: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Mogens A. Krogh" <MKROGH@DSR.KVL.DK>
Organization: http://groups.google.com
Subject: Re: put value of variables in title of plot
Content-Type: text/plain; charset="us-ascii"
Dear Sue,
You could try the #byval in the title for this. Take a look at the
example below.
options nobyline;
title1 "Plot of subject #byval1";
title2 "Age is #byval2 and Lq is #byval3";
proc gplot data=something;
by Subject Age Lq;
plot something*somethingElse;
run;
quit;
Regards
Mogens A. Krogh
PhD-student, DVM
University of Copenhagen
Denmark
|