LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (January 2007, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page