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 (June 2002, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Wed, 19 Jun 2002 09:15:18 -0400
Reply-To:   "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Michael S. Zdeb" <msz03@HEALTH.STATE.NY.US>
Subject:   Re: How to increase graph output size to several pages?
Content-type:   text/plain; charset=us-ascii

Hi....one other possibility. If the object of this is to produce a big plot on paper and you don't mind cutting and taping, you could always 'blow up' each portion of the graph with GREPLAY, then print/cut/tape (you won't need a large-format output device) This puts four enlarged sections into one PDF file...

data test; input x y @@; datalines; 1 0 2 19 3 33 4 39 5 50 ; run;

proc gplot data=test gout=temp; plot y*x / autohref autovref name='xyplot'; run; quit;

goptions reset=all dev=pdf ;

symbol1 c=black v=dot i=join;

ods listing close; ods pdf file='i:\four.pdf' notoc;

proc greplay tc=tempcat igout=temp nofs; tdef enlarge 1/ llx=0 ulx=0 lrx=200 urx=200 lly=0 uly=200 lry=0 ury=200 2/ llx=0 ulx=0 lrx=200 urx=200 lly=-100 uly=100 lry=-100 ury=100 3/ llx=-100 ulx=-100 lrx=100 urx=100 lly=0 uly=200 lry=0 ury=200 4/ llx=-100 ulx=-100 lrx=100 urx=100 lly=-100 uly=100 lry=-100 ury=100 ; run; template enlarge; tplay 1:xyplot; run; tplay 2:xyplot; run; tplay 3:xyplot; run; tplay 4:xyplot; run; quit;

ods pdf close; ods listing;

Mike Zdeb New York State Department of Health ESP Tower - Room 1811 Albany, NY 12237 P/518-473-2855 F/630-604-1475


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